/* Enhanced Seeds Introduction Section Styling */
.seeds-intro {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.seeds-intro::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="%23136c39" fill-opacity="0.05"%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');
    z-index: -1;
}

.seeds-intro .section-header {
    margin-bottom: 3rem;
    position: relative;
}

.seeds-intro .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.seeds-intro .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.seeds-intro .section-line {
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.seeds-intro .section-line::before,
.seeds-intro .section-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15px;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.6;
}

.seeds-intro .section-line::before {
    left: -25px;
}

.seeds-intro .section-line::after {
    right: -25px;
}

.seeds-intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.seeds-intro-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease-out;
}

.seeds-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.seeds-intro-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.seeds-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.seeds-intro-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.5s ease;
}

.seeds-intro-image:hover img {
    transform: scale(1.02);
}

.seeds-intro-image:hover::before {
    top: -20px;
    right: -20px;
    opacity: 0.5;
}

/* Enhanced Seed Benefits Styling */
.seed-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(19, 108, 57, 0.05);
    height: 100%;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 108, 57, 0.1);
}

.benefit:hover::before {
    height: 100%;
}

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.benefit:hover i {
    transform: scale(1.2);
}

.benefit h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.benefit h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.benefit:hover h4::after {
    width: 60px;
    opacity: 1;
}

.benefit p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .seeds-intro {
        padding: 4rem 0;
    }
    
    .seeds-intro .section-header h2 {
        font-size: 2.2rem;
    }
    
    .seeds-intro-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .seeds-intro-text {
        order: 2;
        width: 100%;
    }
    
    .seeds-intro-image {
        order: 1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .seeds-intro {
        padding: 3rem 0;
    }
    
    .seeds-intro .section-header h2 {
        font-size: 1.8rem;
    }
    
    .seeds-intro-text p {
        font-size: 1rem;
    }
    
    .seed-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .benefit h4 {
        font-size: 1.1rem;
    }
    
    .benefit p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .seeds-intro .section-header h2 {
        font-size: 1.6rem;
    }
    
    .benefit i {
        font-size: 1.5rem;
    }
    
    .seed-benefits {
        grid-template-columns: 1fr;
    }
    
    .seeds-intro-image::before {
        display: none; /* Remove decorative border on smallest screens */
    }
    
    .seeds-intro-image img {
        max-width: 100%;
        border-radius: 8px;
    }
} 