/* Enhanced CSS Design System */
:root {
    /* Color System */
    --color-primary-50: #f0f9ff;
    --color-primary-500: #2d5016;
    --color-primary-600: #1e3a0f;
    --color-primary-700: #15290b;

    --color-accent-400: #d4af37;
    --color-accent-500: #b8941f;
    --color-accent-600: #9c7e1a;

    --color-secondary-400: #7cb518;
    --color-secondary-500: #5a9216;
    --color-secondary-600: #4a7c14;

    /* Gradient System */
    --gradient-primary: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --gradient-hero: linear-gradient(rgba(45, 80, 22, 0.7), rgba(116, 142, 42, 0.7));
    --gradient-background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);

    /* Animation System */
    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;

    --easing-ease: ease;
    --easing-ease-in-out: ease-in-out;
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography System */
    --font-headline: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing System */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Shadow System */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #2c3e2d;
    background: var(--gradient-background);
    scroll-behavior: smooth;
}

/* Enhanced Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2d5016;
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-xl);
}

.logo {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    letter-spacing: 0.5px;
    transition: transform var(--duration-normal) var(--easing-ease);
}

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

.leaf-icon {
    width: 30px;
    height: 30px;
    background: var(--color-secondary-400);
    border-radius: 50% 0 50% 0;
    transform: rotate(45deg);
    transition: all var(--duration-normal) var(--easing-ease);
    box-shadow: var(--shadow-md);
}

.logo:hover .leaf-icon {
    transform: rotate(45deg) scale(1.1);
    background: var(--color-accent-400);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    /* Original logo colors preserved */
    transition: all var(--duration-normal) var(--easing-ease);
}

.logo:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.logo-text {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: var(--spacing-sm);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-links a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    transition: all var(--duration-normal) var(--easing-ease);
}

.nav-links a:hover {
    background: var(--color-primary-500);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
    border: none;
    background: transparent;
    border-radius: 8px;
    transition: all var(--duration-normal) var(--easing-ease);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all var(--duration-normal) var(--easing-ease);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Overlay - Simplified */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2d5016;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .nav-links li {
    margin: 0;
    padding: 0;
}

.mobile-menu .nav-links a {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white !important;
    text-decoration: none;
    min-width: 180px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Enhanced Hero Section */
.hero {
    background: var(--gradient-hero),
        url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 8rem var(--spacing-xl) 6rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s var(--easing-ease-in-out);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: var(--spacing-2xl);
    color: #e8f5e8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    line-height: 1.4;
    animation: fadeInUp 1s var(--easing-ease-in-out) 0.3s both;
}

.crop-visual {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.crop-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.crop-half {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.weeds {
    left: 0;
    background: linear-gradient(45deg, #cc4125, #e55a3c);
}

.disease {
    right: 0;
    background: linear-gradient(45deg, #d4af37, #cc4125);
}

.divider {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
}

.cta-button {
    background: var(--gradient-accent);
    color: white;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--duration-normal) var(--easing-bounce);
    text-decoration: none;
    display: inline-block;
    margin-top: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s var(--easing-ease-in-out) 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--duration-slow) var(--easing-ease);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #e6c547 0%, #c9a52f 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5016;
    position: relative;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7cb518, #d4af37);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    padding: var(--spacing-2xl) var(--spacing-xl) 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-slow) var(--easing-ease);
    border: 2px solid #f8fafc;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--duration-slow) var(--easing-ease);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: #e2e8f0;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.feature-icon-modern {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 4px solid #e2e8f0;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--easing-bounce);
    position: relative;
    overflow: hidden;
}

.feature-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--easing-ease);
}

.feature-card:hover .feature-icon-modern {
    transform: translateY(-12px) scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover .feature-icon-modern::before {
    opacity: 1;
}

.feature-card:nth-child(1) .feature-icon-modern {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-color: #6366f1;
    color: #4338ca;
}

.feature-card:nth-child(2) .feature-icon-modern {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-color: #ef4444;
    color: #dc2626;
}

.feature-card:nth-child(3) .feature-icon-modern {
    background: linear-gradient(135deg, #fffbeb 0%, #fed7aa 100%);
    border-color: #f59e0b;
    color: #d97706;
}

.feature-card:nth-child(4) .feature-icon-modern {
    background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    color: #1d4ed8;
}

.feature-card:nth-child(5) .feature-icon-modern {
    background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%);
    border-color: #ec4899;
    color: #be185d;
}

.feature-card:nth-child(6) .feature-icon-modern {
    background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
    border-color: #10b981;
    color: #047857;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #7cb518;
}

.feature-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1f2937;
    line-height: 1.3;
}

.feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.how-it-works {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7cb518 0%, #5a9216 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Enhanced Image Gallery Section */
.gallery-section {
    background: linear-gradient(rgba(248, 246, 240, 0.9), rgba(232, 220, 192, 0.9)),
        url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

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

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-slow) var(--easing-ease);
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.0) 0%, rgba(116, 142, 42, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--duration-slow) var(--easing-ease);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--easing-ease);
}

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

.gallery-caption {
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 3;
    background: white;
    transition: all var(--duration-normal) var(--easing-ease);
}

.gallery-caption h3 {
    color: var(--color-primary-500);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 1.2rem;
}

.gallery-caption p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(-5px);
}

/* Enhanced Call to Action Section */
.cta-section {
    background: var(--gradient-hero),
        url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem var(--spacing-xl);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 148, 31, 0.95));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    padding: var(--spacing-2xl);
    border-radius: 20px;
    margin: var(--spacing-2xl) 0;
    font-size: 1.2rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--duration-slow) var(--easing-ease);
}

.cta-highlight:hover::before {
    left: 100%;
}

.cta-highlight h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-highlight p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #7cb518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Contact Form Styles */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-form h3 {
    color: var(--color-primary-500);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--duration-normal) var(--easing-ease);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary-400);
    box-shadow: 0 0 0 3px rgba(124, 181, 24, 0.1);
}

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

.submit-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--duration-normal) var(--easing-bounce);
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #1e3a0f 0%, #2d5016 100%);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-info-section {
    color: white;
}

.contact-info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--color-secondary-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text {
    color: white;
}

.contact-detail-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: #1a2f0f;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    transition: all var(--duration-normal) var(--easing-ease);
}

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

.footer-logo span {
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Enhanced Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: var(--shadow-xl);
    transition: all var(--duration-normal) var(--easing-bounce);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--easing-ease);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c547 0%, #c9a52f 100%);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top.show {
    display: flex;
    animation: slideInUp 0.5s var(--easing-bounce);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem var(--spacing-md) 4rem;
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: var(--spacing-xl);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        padding: 0 var(--spacing-md);
    }

    .crop-visual {
        flex-direction: column;
        gap: var(--spacing-md);
        margin: var(--spacing-lg) 0;
    }

    .crop-circle {
        width: 150px;
        height: 150px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }

    .feature-card {
        padding: var(--spacing-xl) var(--spacing-lg);
        min-height: 300px;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .feature-icon-modern {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .gallery-section,
    .cta-section {
        background-attachment: scroll;
        padding: 4rem var(--spacing-md);
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .cta-button {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 1.1rem;
    }

    .cta-highlight {
        padding: var(--spacing-xl);
        margin: var(--spacing-xl) 0;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem var(--spacing-sm) 3rem;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: var(--spacing-lg);
    }

    .feature-card {
        padding: var(--spacing-lg) var(--spacing-md);
        min-height: 280px;
    }

    .feature-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin: var(--spacing-md) 0 var(--spacing-sm);
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
        margin-bottom: var(--spacing-lg);
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-container {
        padding: 0 var(--spacing-sm);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }

    .cta-highlight {
        padding: var(--spacing-lg);
        font-size: 1rem;
    }
}
