﻿/* Seed Production Network Styles */
.seed-production-network {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* =========================================== */
/* COMPACT HERO SECTION */
/* =========================================== */
.compact-hero {
    background: linear-gradient(135deg, #2d5016 0%, #4CAF50 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .compact-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
        opacity: 0.1;
    }

.compact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.compact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.compact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-compact {
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    background-color: #ff9900;
    border: 2px solid #ff9900;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-compact:hover {
        background-color: #e68a00;
        border-color: #e68a00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        text-decoration: none;
        color: white;
    }

/* =========================================== */
/* Common Sections */
/* =========================================== */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #4CAF50;
    }

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1rem;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================== */
/* Process Steps */
/* =========================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #4CAF50;
}

    .step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.step-number {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    color: #2d5016;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================== */
/* Regions Grid */
/* =========================================== */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.region-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    .region-card:hover {
        background: linear-gradient(135deg, #4CAF50 0%, #2d5016 100%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

        .region-card:hover h3 {
            color: white;
        }

    .region-card h3 {
        color: #2d5016;
        margin-bottom: 12px;
        font-size: 1.2rem;
    }

    .region-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* =========================================== */
/* Statistics */
/* =========================================== */
.statistics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .statistics .section-title {
        color: white;
    }

        .statistics .section-title:after {
            background-color: #ff9900;
        }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff9900;
}

.stat-item h3 {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* =========================================== */
/* Quality Control & Support Grids */
/* =========================================== */
.quality-grid, .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.quality-item, .support-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border-top: 3px solid #4CAF50;
    transition: transform 0.3s ease;
}

    .quality-item:hover, .support-item:hover {
        transform: translateY(-3px);
    }

    .quality-item h4, .support-item h4 {
        color: #2d5016;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .quality-item p, .support-item p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* =========================================== */
/* Testimonial */
/* =========================================== */
.testimonial {
    background: linear-gradient(rgba(45, 80, 22, 0.95), rgba(45, 80, 22, 0.9));
    color: white;
    padding: 70px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: #ff9900;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* =========================================== */
/* CTA Sections */
/* =========================================== */
.cta-section, .final-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 50px 0;
}

.cta-content h2, .final-cta-content h2 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-content p, .final-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large, .btn-xlarge {
    padding: 12px 35px;
    margin: 0 10px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-xlarge {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

    .btn-primary:hover {
        background-color: #3d8b40;
        border-color: #3d8b40;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        color: white;
        text-decoration: none;
    }

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

    .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #5a6268;
        color: white;
        text-decoration: none;
    }

.btn-outline {
    background-color: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

    .btn-outline:hover {
        background-color: #4CAF50;
        color: white;
        text-decoration: none;
    }

/* =========================================== */
/* Contract Model */
/* =========================================== */
.contract-model {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
    border-left: 4px solid #4CAF50;
}

    .contract-model h3 {
        color: #2d5016;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .contract-model p {
        color: #666;
        line-height: 1.6;
    }

/* =========================================== */
/* Utility Classes */
/* =========================================== */
.bg-light {
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================== */
/* Responsive Design */
/* =========================================== */
@media (max-width: 768px) {
    .compact-hero {
        padding: 50px 0;
    }

    .compact-hero-title {
        font-size: 2rem;
    }

    .compact-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .process-steps, .regions-grid, .stats-grid,
    .quality-grid, .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-compact, .btn-large, .btn-xlarge {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .compact-hero-title {
        font-size: 1.8rem;
    }

    .compact-hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }

    .compact-hero-content, .cta-content, .final-cta-content {
        padding: 0 15px;
    }
}
