/* ReachOut World Nigeria Reports Portal - Custom CSS */

/* Base Styles */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.02);
}

.shadow-nigeria {
    box-shadow: 0 4px 15px rgba(0, 135, 81, 0.1);
}

/* Navigation Styles */
.nav-wrapper {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.02);
}

.brand-icon {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.brand-title {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    line-height: 1;
}

.brand-light {
    font-size: 1.125rem;
    font-weight: 300;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.brand-bold {
    font-size: 1.125rem;
    font-weight: 700;
    color: #006B3C;
    letter-spacing: -0.01em;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.01em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link-item i {
    font-size: 0.9375rem;
    transition: transform 0.3s ease;
}

.nav-link-item:hover {
    color: #008751;
    background-color: rgba(0, 135, 81, 0.05);
}

.nav-link-item:hover i {
    transform: scale(1.1);
}

.nav-link-item.active {
    color: #008751;
    background-color: rgba(0, 135, 81, 0.08);
    font-weight: 600;
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 135, 81, 0.1);
    color: #008751;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.hidden {
    display: none;
}

@media (max-width: 767px) {
    .mobile-menu:not(.hidden) {
        display: block;
    }
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-link:hover {
    color: #008751;
    background-color: rgba(0, 135, 81, 0.05);
}

.mobile-menu-link.active {
    color: #008751;
    background-color: rgba(0, 135, 81, 0.08);
    font-weight: 600;
}

.mobile-menu-cta {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    background: linear-gradient(135deg, #008751 0%, #00A86B 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 135, 81, 0.2);
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 135, 81, 0.3);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #008751 0%, #00A86B 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 135, 81, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 135, 81, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #008751;
    border: 2px solid #008751;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #008751;
    color: white;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Cards */
.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-portal {
    cursor: pointer;
    border: 2px solid transparent;
}

.card-portal:hover {
    border-color: #008751;
}

/* Submission Type Cards */
.submission-type-card .card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submission-type-card input:checked + .card {
    border-color: #008751 !important;
    background-color: #f0fdf4 !important;
}

/* Form Controls - Enhanced Styling */
.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
}

.form-input:hover, .form-select:hover {
    border-color: #9ca3af;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #008751;
    box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23008751' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 48px;
    cursor: pointer;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

/* Textarea Specific */
textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox and Radio Styling */
input[type="checkbox"], input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #008751;
    border: 2px solid #d1d5db;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="checkbox"]:focus, input[type="radio"]:focus {
    outline: 2px solid #008751;
    outline-offset: 2px;
}

/* File Upload */
.file-drop-zone {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    background-color: #f9fafb;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.file-drop-zone:hover {
    border-color: #008751;
    background-color: #f0fdf4;
}

.file-drop-zone.dragover {
    border-color: #008751;
    background-color: #f0fdf4;
}

.file-list {
    margin-top: 16px;
    space-y: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #008751 0%, #00A86B 100%);
}

.hero-bg {
    background: linear-gradient(rgba(0, 135, 81, 0.85), rgba(0, 168, 107, 0.85)), url('../images/hero_img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    padding: 8rem 0;
    animation: fadeIn 1.2s ease-out;
}

.hero-text-wrapper {
    margin-bottom: 4rem;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-title {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: #ffffff;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-title-highlight {
    display: block;
    font-size: clamp(3.5rem, 12vw, 8.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: #FFD700;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.hero-description {
    max-width: 42rem;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeIn 1s ease-out 1s both;
}

.hero-description strong {
    font-weight: 600;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 1.2s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(3px) scale(1.1);
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.hero-overlay {
    position: relative;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.9));
    z-index: 1;
}

.hero-overlay > * {
    position: relative;
    z-index: 2;
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-content {
        padding: 4rem 0;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .hero-text-wrapper {
        margin-bottom: 2.5rem;
    }

    .hero-tagline {
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.7rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}

/* Moments Section */
.moments-section {
    padding: 8rem 0;
    background: #ffffff;
}

.moments-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 1s ease-out;
}

.moments-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #008751;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 135, 81, 0.05);
    border-radius: 50px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.moments-title {
    display: block;
    margin-bottom: 1.5rem;
}

.moments-title-light {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #1f2937;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.moments-title-bold {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #006B3C;
    line-height: 1.1;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.moments-description {
    max-width: 40rem;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.7;
    color: #6b7280;
    animation: fadeIn 1s ease-out 0.8s both;
}

/* Responsive Moments Styles */
@media (max-width: 768px) {
    .moments-section {
        padding: 5rem 0;
    }

    .moments-header {
        margin-bottom: 3rem;
    }

    .moments-label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        padding: 0.375rem 1.25rem;
        margin-bottom: 1rem;
    }

    .moments-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .moments-section {
        padding: 4rem 0;
    }

    .moments-label {
        font-size: 0.7rem;
    }

    .moments-description {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #f9fafb;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 1s ease-out;
}

.about-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #008751;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 135, 81, 0.05);
    border-radius: 50px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.about-title {
    display: block;
    margin-bottom: 1.5rem;
}

.about-title-light {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #1f2937;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.about-title-bold {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #006B3C;
    line-height: 1.1;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.about-description {
    max-width: 40rem;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.7;
    color: #6b7280;
    animation: fadeIn 1s ease-out 0.8s both;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    animation: slideUp 0.8s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #008751 0%, #00A86B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 135, 81, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 135, 81, 0.3);
}

.feature-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #006B3C;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-text {
    font-size: 1rem;
    font-weight: 300;
    color: #6b7280;
    line-height: 1.6;
}

.about-actions {
    animation: slideUp 0.8s ease-out 0.8s both;
}

.actions-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.actions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 135, 81, 0.15);
}

.actions-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #006B3C;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.action-item i {
    color: #008751;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.action-item span {
    font-size: 1rem;
    font-weight: 400;
    color: #374151;
    line-height: 1.6;
}

/* Responsive About Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 5rem 0;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .about-label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        padding: 0.375rem 1.25rem;
        margin-bottom: 1rem;
    }

    .about-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-features {
        gap: 1.5rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
    }

    .feature-icon i {
        font-size: 1.125rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .actions-card {
        padding: 2rem;
    }

    .actions-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-label {
        font-size: 0.7rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .actions-card {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #008751 0%, #00A86B 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

.cta-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out 0.2s both;
}

.cta-title {
    display: block;
    margin-bottom: 2rem;
}

.cta-title-main {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.cta-title-highlight {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FFD700;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.cta-description {
    max-width: 42rem;
    margin: 0 auto 3rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out 1s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.cta-button i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px) scale(1.1);
}

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

/* Responsive CTA Styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }

    .cta-label {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        padding: 0.375rem 1.25rem;
        margin-bottom: 1rem;
    }

    .cta-title {
        margin-bottom: 1.5rem;
    }

    .cta-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-label {
        font-size: 0.7rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer-wrapper {
    background: linear-gradient(135deg, #006B3C 0%, #004d2b 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 7rem;
    height: 7rem;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title h3 {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0;
    line-height: 1;
}

.footer-title-light {
    font-size: 1.375rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-title-bold {
    font-size: 1.375rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: -0.01em;
}

.footer-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.footer-description {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 40rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFD700;
    transform: translateX(4px);
}

.footer-divider {
    position: relative;
    z-index: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-powered {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.powered-highlight {
    color: #FFD700;
    font-weight: 500;
}

/* Responsive Footer Styles */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-logo {
        gap: 0.875rem;
    }

    .footer-logo-icon {
        width: 3rem;
        height: 3rem;
    }

    .footer-title-light,
    .footer-title-bold {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-wrapper {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand {
        gap: 1.25rem;
    }

    .footer-logo-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
}

/* Submit Report Page Styles */
.submit-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 4rem 0 6rem;
}

.submit-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.submit-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #008751;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 135, 81, 0.05);
    border-radius: 50px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.submit-title {
    display: block;
    margin-bottom: 1rem;
}

.submit-title-light {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #1f2937;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.submit-title-bold {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #006B3C;
    line-height: 1.1;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.submit-description {
    max-width: 36rem;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.7;
    color: #6b7280;
    animation: fadeIn 1s ease-out 0.8s both;
}

/* Alert Styles */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    animation: slideUp 0.5s ease-out;
}

.alert-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.alert-content {
    flex: 1;
}

.alert-message {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.05) 0%, rgba(240, 253, 244, 1) 100%);
    border: 1px solid rgba(0, 135, 81, 0.2);
}

.alert-success .alert-icon {
    background: rgba(0, 135, 81, 0.1);
    color: #008751;
}

.alert-success .alert-message {
    color: #166534;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(254, 242, 242, 1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-error .alert-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.alert-error .alert-message {
    color: #991b1b;
}

/* Form Section Styles */
.form-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section:hover {
    box-shadow: 0 8px 30px rgba(0, 135, 81, 0.1);
    transform: translateY(-2px);
}

.form-section-header {
    background: linear-gradient(135deg, #006B3C 0%, #008751 100%);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-section-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section-icon i {
    color: #FFD700;
    font-size: 1.25rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.form-section-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.25rem 0 0;
    line-height: 1.4;
}

/* Form Actions */
.form-actions {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px) scale(1.1);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn-primary {
    background: linear-gradient(135deg, #008751 0%, #00A86B 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 135, 81, 0.25);
}

.submit-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 135, 81, 0.35);
}

.submit-btn-secondary {
    background: transparent;
    color: #006B3C;
    border: 2px solid #006B3C;
}

.submit-btn-secondary:hover {
    background: rgba(0, 107, 60, 0.05);
    transform: translateY(-3px);
}

/* Responsive Submit Page */
@media (min-width: 640px) {
    .form-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .submit-page {
        padding: 3rem 0 4rem;
    }

    .submit-header {
        margin-bottom: 2rem;
    }

    .submit-label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        padding: 0.375rem 1.25rem;
        margin-bottom: 0.75rem;
    }

    .submit-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .form-section-header {
        padding: 1.25rem 1.5rem;
        gap: 0.875rem;
    }

    .form-section-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .form-section-icon i {
        font-size: 1.125rem;
    }

    .form-section-title {
        font-size: 1.125rem;
    }

    .form-section-subtitle {
        font-size: 0.8125rem;
    }

    .form-actions {
        padding: 1.5rem;
    }

    .submit-btn {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .submit-page {
        padding: 2.5rem 0 3rem;
    }

    .submit-label {
        font-size: 0.7rem;
    }

    .submit-description {
        font-size: 0.9rem;
    }

    .form-section-header {
        padding: 1rem 1.25rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.animate-on-scroll.visible,
.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

.animate-scale-up {
    animation: scaleUp 0.3s ease-out;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Statistics Counter */
.stat-counter {
    text-align: center;
    padding: 24px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-counter:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Portal Selection */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.portal-card {
    text-align: center;
    padding: 32px;
}

.portal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background-color: #008751;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.portal-title {
    font-size: 20px;
    font-weight: 700;
    color: #006B3C;
    margin-bottom: 8px;
}

.portal-description {
    color: #6b7280;
    font-size: 14px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.breadcrumb-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb-item:hover {
    color: #008751;
}

/* Gallery Section */
.gallery-wrapper {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
    margin-top: 2rem;
    width: 100%;
}

.gallery-wrapper::before,
.gallery-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 2;
}

.gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.gallery-track {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    will-change: transform;
    white-space: nowrap;
}

.gallery-item {
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    width: auto;
}

.gallery-image {
    width: 340px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
}

.gallery-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 135, 81, 0.15);
}

.gallery-image:hover::after {
    opacity: 1;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Responsive Gallery Styles */
@media (max-width: 1024px) {
    .gallery-image {
        width: 280px;
        height: 200px;
    }

    .gallery-wrapper {
        padding: 2.5rem 0;
    }

    .gallery-track {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .gallery-image {
        width: 240px;
        height: 180px;
        border-radius: 12px;
    }

    .gallery-wrapper {
        padding: 2rem 0;
    }

    .gallery-wrapper::before,
    .gallery-wrapper::after {
        width: 80px;
    }

    .gallery-track {
        gap: 1.5rem;
    }
}

.breadcrumb-separator {
    color: #9ca3af;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Phone Input with Country Code */
.phone-container {
    display: flex;
}

.country-code-select {
    width: 128px;
    padding: 12px;
    border: 2px solid #d1d5db;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    background-color: white;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23008751' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
}

.phone-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-left: 0;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    background-color: white;
    color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-code-select:hover, .phone-input:hover {
    border-color: #9ca3af;
}

.country-code-select:focus, .phone-input:focus {
    outline: none;
    border-color: #008751;
    box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.1);
}

/* Alert Messages */
.alert {
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #008751;
    color: #166534;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}

.alert-info {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

/* Focus States for Accessibility */
.form-input:focus,
.form-select:focus,
.country-code-select:focus,
.phone-input:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
button:focus {
    outline: 2px solid #008751;
    outline-offset: 2px;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-gold {
        width: 100%;
        text-align: center;
    }
    
    .phone-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .country-code-select {
        width: 100%;
        border-radius: 8px;
        border-right: 2px solid #d1d5db;
    }
    
    .phone-input {
        border-radius: 8px;
        border-left: 2px solid #d1d5db;
    }
    
    .form-input, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Color classes for Tailwind compatibility */
.text-nigeria-green { color: #008751; }
.text-nigeria-gold { color: #FFD700; }
.text-dark-green { color: #006B3C; }
.bg-nigeria-green { background-color: #008751; }
.bg-nigeria-gold { background-color: #FFD700; }
.border-nigeria-green { border-color: #008751; }
.border-nigeria-gold { border-color: #FFD700; }


