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

:root {
    --primary-green: #4ade80;
    --dark-green: #22c55e;
    --light-green: #86efac;
    --forest-green: #166534;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-light: #e5e7eb;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 80px;
    height: 70px;
    object-fit: contain;
    display: block;
}

/* Fallback for missing logo */
.logo[src="rooted-logo.png"] {
    padding: 8px;
}

.logo:not([src*="data:"]):not([src*="http"]) {
    border-radius: 8px;
    content: "";
    position: relative;
}

.logo::before {
    content: "🌱";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.logo[alt]:empty::before,
.logo:not([src])::before {
    display: block;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-green);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: var(--primary-green);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="tree-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%2322c55e" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tree-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(74, 222, 128, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-text {
    color: var(--forest-green);
    font-weight: 500;
    font-size: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight {
    color: var(--primary-green);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-note {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: white;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.mission em {
    color: var(--primary-green);
    font-style: normal;
}

.mission-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.mission-question p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.mission-question blockquote {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest-green);
    font-style: italic;
    border-left: 4px solid var(--primary-green);
    padding-left: 24px;
    margin: 0 auto;
    max-width: 800px;
    
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: white;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.partnership-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.partnership-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.partnership-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

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

.benefit-card {
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    background: white;
}

.benefit-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-green);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Species Section */
.species {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.species-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.species-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.species-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.species-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.species-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Reserve CTA Section */
.reserve-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

.cta-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
}

.cta-badge .badge-text {
    color: #dc2626;
    font-weight: 500;
    font-size: 14px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.cta-content > p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-gray);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--forest-green);
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(74, 222, 128, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    position: relative;
}

.sponsor-amount {
    margin-left: 24px;
    padding: 16px;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.submit-btn {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--forest-green);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tagline {
    color: var(--light-green);
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    object-fit: contain;
    display: block;
}

/* Footer logo fallback */
.footer-logo[src="rooted-logo.png"] {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    position: relative;
}

.footer-logo[src="rooted-logo.png"]::before {
    content: "🌱";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.footer-logo-placeholder {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--light-green);
    margin-bottom: 16px;
}

.footer-contact h4,
.footer-program h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-green);
}

.footer-contact p,
.footer-program p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 100px;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-hero-subtitle em {
    color: var(--primary-green);
    font-style: normal;
    font-weight: 600;
}

.mission-statement {
    padding: 100px 0;
    background: white;
}

.mission-intro {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.mission-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.3);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.mission-highlight:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 30px 60px rgba(74, 222, 128, 0.4);
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.mission-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

.mission-highlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.mission-highlight h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.mission-text {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.impact-statement {
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 50px 40px;
    border-radius: 20px;
    border-left: 6px solid var(--primary-green);
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.impact-statement:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.15);
}

.impact-statement::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 30px;
    background: white;
    padding: 8px 12px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-statement p {
    font-size: 1.25rem;
    color: var(--forest-green);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    position: relative;
}

.impact-statement p strong {
    color: var(--primary-green);
    font-weight: 700;
    position: relative;
}

.impact-statement p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 1px;
}

.our-approach {
    padding: 100px 0;
    background: var(--light-bg);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.approach-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.approach-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.the-problem {
    padding: 100px 0;
    background: white;
}

.problem-content {
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.problem-item {
    text-align: center;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #ef4444;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.problem-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.our-solution {
    padding: 100px 0;
    background: var(--light-bg);
}

.solution-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.solution-features {
    max-width: 800px;
    margin: 0 auto;
}

.solution-feature {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.125rem;
}

.our-values {
    padding: 100px 0;
    background: white;
}

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

.value-card {
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.value-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-green);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-cta p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-green);
}

.cta-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-category {
    margin-bottom: 80px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.team-category-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--forest-green);
    position: relative;
}

.team-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    gap: 40px;
    justify-items: center;
}

.founders-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

.mentors-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover .member-photo::before {
    transform: translateX(100%);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

.mentor-photo {
    background: linear-gradient(135deg, var(--forest-green), var(--primary-green));
}

.member-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: center;
}

.member-role {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
    }
    
    .benefits-grid,
    .species-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .partnership-highlight {
        padding: 40px 24px;
    }
    
    .partnership-content h3 {
        font-size: 1.5rem;
    }
    
    /* About page mobile styles */
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .solution-feature {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .feature-number {
        margin: 0 auto;
    }
    
    .mission-highlight {
        padding: 40px 24px;
    }
    
    .mission-highlight h2 {
        font-size: 2rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-category-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }
    
    .member-name {
        font-size: 1.125rem;
    }
}
