:root {
    --primary: #2e7d32;
    --secondary: #d35400;
    --accent: #f39c12;
    --light: #f9f4e8;
    --dark: #2c3e50;
    --terracotta: #cb4335;
    --ochre: #d4ac0d;
    --deep-green: #1e5631;
    --neutral: #e8e0d5;
    --border-radius: 0.5rem;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#landing-page {
    color: #333;
}

/* Navbar Styling */
.navbar {
    background-color: transparent;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: var(--dark);
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.logo-text .accent {
    color: var(--accent);
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/africa-map-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        var(--terracotta),
        var(--terracotta) 10px,
        var(--ochre) 10px,
        var(--ochre) 20px,
        var(--deep-green) 20px,
        var(--deep-green) 30px
    );
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: var(--text-shadow);
    max-width: 600px;
}

.hero-cta .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    margin-right: 1rem;
    box-shadow: var(--box-shadow);
}

.hero-stats {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    flex: 1;
    min-width: 150px;
    text-align: center;
    border-left: 3px solid var(--accent);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: var(--neutral);
}

.section-pattern {
    position: relative;
}

.section-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        45deg,
        var(--terracotta),
        var(--terracotta) 5px,
        var(--ochre) 5px,
        var(--ochre) 10px,
        var(--deep-green) 10px,
        var(--deep-green) 15px
    );
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Investment Plans */
.investment-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.investment-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
}

.investment-card:hover {
    transform: translateY(-10px);
}

.investment-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.investment-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-bottom-left-radius: var(--border-radius);
}

.investment-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.investment-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.investment-period {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
}

.investment-feature {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.investment-cta {
    margin-top: 2rem;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--box-shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--accent);
    margin-top: 0.5rem;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0 0;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo .accent {
    color: var(--accent);
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .investment-card.featured {
        transform: scale(1);
    }
    
    .investment-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-up {
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.staggered-fade-up > * {
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.staggered-fade-up > *.active {
    opacity: 1;
    transform: translateY(0);
}

.staggered-fade-up > *:nth-child(1) { transition-delay: 0.1s; }
.staggered-fade-up > *:nth-child(2) { transition-delay: 0.2s; }
.staggered-fade-up > *:nth-child(3) { transition-delay: 0.3s; }
.staggered-fade-up > *:nth-child(4) { transition-delay: 0.4s; }
.staggered-fade-up > *:nth-child(5) { transition-delay: 0.5s; }
.staggered-fade-up > *:nth-child(6) { transition-delay: 0.6s; }

/* Timeline Styling */
.timeline {
    position: relative;
    padding-left: 50px;
    margin: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item:last-child::before {
    height: 20px;
}

.timeline-number {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

/* Testimonial Slider Styling */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card:not(.active) {
    display: none;
}

.testimonial-controls {
    margin-top: 2rem;
}

/* Fix for missing image placeholders */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/VvAcrVa56fc/1920x1080');
}

.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/9pjBx5uVBlg/1920x1080');
} 