/* Font Faces */
@font-face {
    font-family: 'Seb Neue';
    src: url('../fonts/SebneueLight-o8Gd.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Seb Neue';
    src: url('../fonts/SebneueRegular-eAGm.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Seb Neue';
    src: url('../fonts/SebneueMedium-401p.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Seb Neue';
    src: url('../fonts/SebneueSemibold-Wgdn.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Seb Neue';
    src: url('../fonts/SebneueBold-PwMm.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --primary-color: #2C5F41;
    --primary-light: #4A7C59;
    --primary-dark: #1E3F2A;
    --secondary-color: #7FB069;
    --accent-color: #F4A261;
    --background-color: #FEFEFE;
    --surface-color: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --text-muted: #85929E;
    --border-color: #E8EAED;
    --shadow-light: 0 2px 10px rgba(44, 95, 65, 0.08);
    --shadow-medium: 0 4px 20px rgba(44, 95, 65, 0.12);
    --shadow-heavy: 0 8px 30px rgba(44, 95, 65, 0.16);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Seb Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    font-size: 16px;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.nav-logo {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-brand a:hover {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-color) 0%, #F8FFFE 100%);
    padding: 3rem 0 2rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.hero-animation lottie-player {
    filter: drop-shadow(0 4px 20px rgba(44, 95, 65, 0.15));
    mask: radial-gradient(circle at center, black 60%, transparent 100%);
    -webkit-mask: radial-gradient(circle at center, black 60%, transparent 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 100%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: var(--background-color);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(248, 255, 254, 0.3) 0%, var(--background-color) 100%);
    z-index: 1;
}

.mission .section-container {
    position: relative;
    z-index: 2;
}

/* Mission Content */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-statement h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.stat-highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 3rem;
}

.mission-statement p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-statement {
    margin-bottom: 3rem;
}

.problem-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.solution-statement {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
}

.solution-statement h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.solution-statement p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--background-color);
    transform: translateY(-2px);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-logo {
    width: 28px;
    height: 28px;
    margin-right: 0.5rem;
    border-radius: 4px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--background-color) 0%, #F8FFFE 100%);
    padding: 4rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* Flash Messages */
.flash-message {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-message i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Centered Content */
.about-hero {
    background: linear-gradient(135deg, var(--background-color) 0%, #F8FFFE 100%);
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content-centered h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content-centered .lead {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 100%;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-story h2,
.about-approach h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-point {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.approach-point:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.approach-point i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.approach-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.approach-point p {
    font-size: 0.9rem;
    margin: 0;
}

/* Values Section */
.values-section {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    margin-top: 2rem;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Page */
.contact-content {
    padding: 3rem 0;
}

.contact-simple {
    max-width: 600px;
    margin: 0 auto;
}

.contact-email {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    text-align: center;
    margin-bottom: 2rem;
}

.email-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.email-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.email-info h3 {
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
}

.email-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    line-height: 1.4;
}

.contact-method .small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.contact-cta {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
}

.contact-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Contact Form */
.form-container {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq-section {
    background: var(--surface-color);
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--background-color);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 0 1.5rem 0;
        min-height: 50vh;
    }
    
    .mission {
        padding: 3rem 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        gap: 1rem;
    }
    
    .hero-animation lottie-player {
        width: 150px !important;
        height: 150px !important;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .mission-statement h3 {
        font-size: 2rem;
    }
    
    .stat-highlight {
        font-size: 2.5rem;
    }
    
    .mission-statement p {
        font-size: 1.1rem;
    }
    
    .solution-statement {
        padding: 2rem 1.5rem;
    }
    
    .about-hero {
        padding: 4rem 0;
        min-height: 60vh;
    }
    
    .about-content-centered h1 {
        font-size: 2.5rem;
    }
    
    .about-content-centered .lead {
        font-size: 1.3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 1rem 0;
    }
    
    .mission {
        padding: 2.5rem 0;
    }
    
    .mission::before {
        height: 40px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .hero-animation {
        margin-bottom: 1.5rem;
    }
    
    .hero-animation lottie-player {
        width: 120px !important;
        height: 120px !important;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .nav-brand a {
        font-size: 1.25rem;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .nav-links {
        display: flex;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .nav-link {
        padding: 0.25rem 0.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid {
        gap: 2rem;
    }
    
    .approach-points {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .mission-statement h3 {
        font-size: 1.75rem;
    }
    
    .stat-highlight {
        font-size: 2rem;
    }
    
    .mission-statement p {
        font-size: 1rem;
    }
    
    .solution-statement {
        padding: 1.5rem 1rem;
    }
    
    .solution-statement p {
        font-size: 1.1rem;
    }
    
    .about-hero {
        padding: 3rem 0;
        min-height: 50vh;
    }
    
    .about-content-centered h1 {
        font-size: 2rem;
    }
    
    .about-content-centered .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    /* Mobile Mission Section */
    .mission-statement h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }
    
    .stat-highlight {
        font-size: 2rem;
    }
    
    .mission-statement p,
    .problem-statement p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .solution-statement {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .solution-statement h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .solution-statement p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Mobile Contact Page */
    .contact-content {
        padding: 2rem 0;
    }
    
    .contact-simple {
        padding: 0 1rem;
    }
    
    .contact-email {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .email-info {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .email-info h3 {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
        margin: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile CTA Section */
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-brand {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo {
        width: 24px;
        height: 24px;
    }
    
    .footer p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
}