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

:root {
    /* Forest green palette */
    --forest-green: #15803d;
    --dark-forest: #14532d; 
    --light-forest: #22c55e;
    --pale-green: #bbf7d0;
    --mint: #dcfce7;
    
    /* Accent colors */
    --burnt-orange: #ea580c;
    --warm-amber: #f59e0b;
    --earth-brown: #92400e;
    --light-orange: #fed7aa;
    
    /* Neutrals */
    --dark-text: #0f172a;
    --gray-text: #475569;
    --light-gray: #94a3b8;
    --white: #ffffff;
    --off-white: #fafaf9;
    
    /* Gradients */
    --gradient-forest: linear-gradient(135deg, #14532d 0%, #15803d 50%, #22c55e 100%);
    --gradient-forest-dark: linear-gradient(135deg, #052e16 0%, #14532d 100%);
    --gradient-forest-light: linear-gradient(180deg, rgba(21, 128, 61, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --gradient-mint: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-orange: 0 4px 14px 0 rgba(234, 88, 12, 0.4);
    
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-forest);
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--forest-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--mint) 0%, var(--white) 100%);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-emphasis {
    display: block;
    color: var(--dark-forest);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-top: 0.5rem;
    animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin: 2rem auto;
    max-width: 700px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--burnt-orange);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(234, 88, 12, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
    background: var(--forest-green);
    color: white;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 4rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--burnt-orange);
    border-bottom: 2px solid var(--burnt-orange);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-lead {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Problem Section - Bold Forest Background */
.problem-section {
    padding: 5rem 0;
    background: var(--gradient-forest);
    position: relative;
    color: white;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.problem-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-item {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-text);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--burnt-orange);
    box-shadow: var(--shadow-xl);
}

.problem-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burnt-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.problem-text {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.problem-cost {
    font-size: 1.25rem;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-text);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--burnt-orange);
}

.problem-cost strong {
    color: var(--burnt-orange);
    font-weight: 700;
    font-size: 1.4rem;
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, white 0%, var(--mint) 100%);
    position: relative;
    overflow: hidden;
}

.vision-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.vision-card {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    width: 65%;
    box-shadow: var(--shadow-lg);
}

.vision-card:nth-child(odd) {
    align-self: flex-start;
    background: var(--gradient-forest);
    color: white;
}

.vision-card:nth-child(even) {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--mint) 0%, var(--pale-green) 100%);
}

.vision-card:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.vision-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
}

.vision-card:nth-child(odd) h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.vision-card:nth-child(even) h3 {
    color: var(--dark-forest);
    border-bottom: 2px solid var(--forest-green);
}

.vision-card:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
}

.vision-card:nth-child(even) p {
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.7;
}



/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.contact-section .section-title {
    color: var(--dark-forest);
}

.contact-info-centered {
    text-align: center;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--dark-forest);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    display: inline-block;
    padding: 0.5rem 1rem;
}

.contact-item a:hover {
    color: var(--burnt-orange);
    transform: translateX(4px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--pale-green);
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--pale-green);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--dark-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(234, 88, 12, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-forest);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

/* Animations on scroll */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-emphasis {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-list {
        grid-template-columns: 1fr;
    }
    
    .vision-card {
        width: 90% !important;
        align-self: center !important;
    }
    
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .vision-card {
        width: 95% !important;
        padding: 1.75rem;
    }
    
    .vision-card h3 {
        font-size: 1.3rem;
    }
    
    .vision-card p {
        font-size: 0.95rem;
    }
    .container {
        padding: 0 16px;
    }
    
    .nav-brand {
        font-size: 1.25rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-emphasis {
        font-size: 2rem;
    }
    
    .problem-stat {
        font-size: 2rem;
    }
}