/* Modern Landing Page Styles */
:root {
    --kenya-green: #228B22;
    --kenya-light-green: #90EE90;
    --kenya-red: #DC143C;
    --kenya-white: #FFFFFF;
    --kenya-dark-green: #006400;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 4rem 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kenya-red) 0%, var(--kenya-light-green) 50%, var(--kenya-red) 100%);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--kenya-green), var(--kenya-red));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--kenya-light-green), var(--kenya-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kenya-flag {
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--kenya-light-green);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--kenya-light-green);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--kenya-green);
}

/* Email Capture Card */
.email-capture-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid var(--kenya-light-green);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(34, 139, 34, 0.3);
}

.free-trial-badge {
    background: var(--kenya-red);
    color: white;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.email-capture-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--kenya-light-green);
}

.email-capture-card .form-control {
    background: rgba(40, 40, 40, 0.9);
    border: 2px solid var(--kenya-light-green);
    color: #ffffff;
    border-radius: 10px;
    padding: 1rem;
}

.email-capture-card .form-control:focus {
    border-color: var(--kenya-green);
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.25);
}

.email-capture-card .btn-primary {
    background: linear-gradient(135deg, var(--kenya-green) 0%, var(--kenya-dark-green) 100%);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.email-capture-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #999;
}

/* Trust Section */
.trust-section {
    background: rgba(20, 20, 20, 0.8);
    padding: 3rem 0;
    border-top: 1px solid var(--kenya-light-green);
    border-bottom: 1px solid var(--kenya-light-green);
}

.trust-stat {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kenya-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Areas Section */
.areas-section {
    padding: 3rem 0;
    background: #000000;
}

.areas-section h4 {
    color: var(--kenya-light-green);
    font-size: 1.5rem;
    font-weight: 600;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-tag {
    background: rgba(34, 139, 34, 0.2);
    border: 1px solid var(--kenya-green);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--kenya-light-green);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(34, 139, 34, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .email-capture-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
