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

:root {
    --primary-green: #059669;
    --soil-brown: #92400E;
    --harvest-yellow: #FBBF24;
    --sky-blue: #0EA5E9;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 15px rgba(5, 150, 105, 0.1);
    --shadow-lg: 0 10px 30px rgba(5, 150, 105, 0.15);
    --shadow-organic: 0 8px 25px rgba(146, 64, 14, 0.12);
}

body {
    font-family: 'Nunito', 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--soil-brown);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-family: 'Open Sans', sans-serif;
}

.cookie-content a {
    color: var(--harvest-yellow);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--harvest-yellow);
    color: var(--text-dark);
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.cookie-btn:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: width 0.3s;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-layer.clouds {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    top: -20%;
    height: 40%;
}

.parallax-layer.sun {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.parallax-layer.plants {
    background: linear-gradient(to top, rgba(5, 150, 105, 0.15) 0%, transparent 100%);
    bottom: 0;
    height: 30%;
}

.parallax-layer.tractor {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><rect x="10" y="20" width="60" height="20" fill="%2392400E" opacity="0.2"/><circle cx="25" cy="45" r="8" fill="%231a1a1a" opacity="0.2"/><circle cx="55" cy="45" r="8" fill="%231a1a1a" opacity="0.2"/></svg>') no-repeat;
    background-size: contain;
    bottom: 15%;
    right: 5%;
    width: 150px;
    height: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.75) 0%, rgba(146, 64, 14, 0.6) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    text-align: left;
    max-width: 600px;
}

.slider-slide.active .slide-content {
    animation: slideInUp 0.8s ease-out;
}

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

.slide-season {
    display: inline-block;
    padding: 8px 20px;
    background: var(--harvest-yellow);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.slide-description {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-slide {
    padding: 14px 35px;
    background: var(--bg-white);
    color: var(--primary-green);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-slide:hover {
    background: var(--harvest-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-main-content {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
    text-align: center;
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.hero-content.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

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

.btn {
    padding: 16px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

.btn-primary {
    background: var(--harvest-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-green);
    transform: translateY(-3px) scale(1.03);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(0,0,0,0.4);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slider-nav {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--primary-green);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary-green);
    color: var(--bg-white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--bg-white);
}

.slider-dots .dot.active {
    background: var(--harvest-yellow);
    transform: scale(1.3);
    border-color: var(--harvest-yellow);
}

/* Water Drops Animation */
.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.water-drop {
    position: absolute;
    width: 4px;
    height: 20px;
    background: var(--sky-blue);
    border-radius: 0 0 50% 50%;
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Features Section */
.features-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.parallax-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(146, 64, 14, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Features Accordion */
.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.accordion-item.active {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: rgba(5, 150, 105, 0.02);
}

.accordion-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.accordion-item:hover .accordion-image img {
    transform: scale(1.1);
}

.accordion-title-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.accordion-title-wrapper h3 {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 300;
    transition: all 0.3s;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--harvest-yellow);
    color: var(--text-dark);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
    font-size: 16px;
}

.features-accordion {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-accordion .accordion-item {
    background: var(--bg-white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.features-accordion .accordion-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.features-accordion .accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s;
    gap: 25px;
}

.features-accordion .accordion-header:hover {
    background: var(--bg-light);
}

.features-accordion .accordion-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.features-accordion .accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.features-accordion .accordion-item.active .accordion-image img {
    transform: scale(1.1);
}

.features-accordion .accordion-title-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.features-accordion .accordion-title-wrapper h3 {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

.features-accordion .accordion-icon {
    font-size: 32px;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s;
    line-height: 1;
}

.features-accordion .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.features-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 30px;
}

.features-accordion .accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 30px 30px;
}

.features-accordion .accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
    padding-top: 20px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

.plant-growth {
    width: 60px;
    height: 0;
    background: linear-gradient(to top, var(--soil-brown) 0%, var(--primary-green) 100%);
    border-radius: 0 0 30px 30px;
    margin: 0 auto;
    animation: grow 2s ease-out forwards;
    position: relative;
}

.plant-growth::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid var(--primary-green);
    animation: leafGrow 1.5s ease-out 1s forwards;
}

@keyframes grow {
    from {
        height: 0;
    }
    to {
        height: 70px;
    }
}

@keyframes leafGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 30px;
        opacity: 1;
    }
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    text-align: center;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}

.growth-chart {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--harvest-yellow));
    border-radius: 10px;
    width: 0;
    animation: chartGrow 2s ease-out 0.5s forwards;
}

@keyframes chartGrow {
    from {
        width: 0;
    }
}

.growth-chart {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--harvest-yellow));
    border-radius: 10px;
    width: 0;
    animation: chartGrow 2s ease-out 0.5s forwards;
}

@keyframes chartGrow {
    from {
        width: 0;
    }
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(5, 150, 105, 0.02) 100%);
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-organic);
    position: relative;
}

.solution-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(146, 64, 14, 0.1) 100%);
    pointer-events: none;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.solution-text h3 {
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.solution-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
}

.solution-text ul {
    list-style: none;
    padding: 0;
}

.solution-text ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
}

.solution-text ul li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Technology Section */
.technology-section {
    background: var(--bg-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.tech-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(5, 150, 105, 0.02) 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-green);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.tech-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tech-card:hover .tech-image img {
    transform: scale(1.1);
}

.tech-card h3,
.tech-card p {
    padding: 0 30px;
}

.tech-card h3 {
    padding-top: 30px;
    margin-bottom: 15px;
}

.tech-card p {
    padding-bottom: 30px;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
    transition: transform 0.6s;
}

.tech-card:hover::before {
    transform: scale(1.2);
}

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

.tech-card h3 {
    color: var(--primary-green);
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    position: relative;
    z-index: 1;
}

.tech-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}

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

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--harvest-yellow);
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
    text-shadow: 2px 2px 4px rgba(251, 191, 36, 0.2);
}

.benefit-item h3 {
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.benefit-item p {
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
}

/* Resources Section */
.resources-section {
    background: var(--bg-white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.resource-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.resource-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.resource-card:hover img {
    transform: scale(1.1);
}

.resource-card h3 {
    color: var(--primary-green);
    padding: 25px 25px 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.resource-card p {
    color: var(--text-light);
    padding: 0 25px 25px;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #047857 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    min-height: 220px;
    margin-bottom: 40px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

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

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.9;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 700;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--bg-white);
    color: var(--primary-green);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--bg-white);
}

.dot.active {
    background: var(--harvest-yellow);
    transform: scale(1.3);
    border-color: var(--harvest-yellow);
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    color: var(--primary-green);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-family: 'Open Sans', sans-serif;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(5, 150, 105, 0.02) 100%);
    padding: 45px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--soil-brown) 0%, #78350f 100%);
    color: var(--bg-white);
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-section h3 {
    color: var(--harvest-yellow);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--harvest-yellow);
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    z-index: 1;
}

/* Policy Pages Styles */
.policy-page {
    padding: 50px 0 100px;
    background: var(--bg-light);
    min-height: 70vh;
}

.policy-content {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    max-width: 950px;
    margin: 0 auto;
}

.policy-content h1 {
    color: var(--primary-green);
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.policy-content h2 {
    color: var(--primary-green);
    font-size: 30px;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.policy-content h3 {
    color: var(--soil-brown);
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.policy-content ul li {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
}

.policy-content a {
    color: var(--primary-green);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
    color: var(--soil-brown);
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(5, 150, 105, 0.05) 100%);
    text-align: center;
    padding: 50px 20px;
}

.thanks-content {
    background: var(--bg-white);
    padding: 70px 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    max-width: 650px;
}

.thanks-content h1 {
    color: var(--primary-green);
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 19px;
    margin-bottom: 30px;
    line-height: 1.9;
    font-family: 'Open Sans', sans-serif;
}

.thanks-content a {
    color: var(--primary-green);
    text-decoration: none;
}

.thanks-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 25px;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .slide-season {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .btn-slide {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .slider-controls {
        bottom: 20px;
        padding: 12px 20px;
        gap: 15px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .solution-item {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: 35px 25px;
    }

    .policy-content h1 {
        font-size: 32px;
    }

    .features-grid,
    .tech-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .accordion-image {
        width: 100%;
        height: 180px;
    }
    
    .accordion-title-wrapper {
        width: 100%;
    }
    
    .accordion-title-wrapper h3 {
        font-size: 22px;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .slide-title {
        font-size: 24px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .slider-controls {
        gap: 10px;
        padding: 10px 15px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}
