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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2d5016 0%, #3d6e1f 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
    animation: fadeInDown 0.8s ease;
}

.logo p {
    font-size: 14px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffb81c;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 15s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(74, 157, 63, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.98;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, #ffb81c 0%, #ffc93f 100%);
    color: #2d5016;
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(255, 184, 28, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffc93f 0%, #ffda5c 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 184, 28, 0.6);
}

/* Products Section */
.products {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf6 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.products h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #2d5016;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a9d3f, #ffb81c);
    z-index: 10;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.12) rotate(2deg);
}

.product-card {
    padding: 30px 25px;
}

.product-card h3 {
    font-size: 24px;
    margin: 20px 0 12px 0;
    color: #2d5016;
    font-weight: 700;
}

.product-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(45, 80, 22, 0.15);
    border-color: #4a9d3f;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fdf6 0%, #ffffff 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #2d5016;
    font-weight: 800;
    animation: fadeInUp 0.8s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(3deg);
    filter: brightness(1.15) saturate(1.2);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5faf2 100%);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 157, 63, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2d5016;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.benefits {
    list-style: none;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.benefits li {
    padding: 20px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, #4a9d3f 0%, #2d5016 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
    transition: all 0.3s ease;
}

.benefits li:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.25);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fdf6 0%, #ffffff 100%);
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #2d5016;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 5px solid #4a9d3f;
    animation: fadeInUp 0.8s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
}

.contact-info h3 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.contact-info a {
    color: #4a9d3f;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffb81c;
    transition: width 0.3s ease;
}

.contact-info a:hover::after {
    width: 100%;
}

.contact-info a:hover {
    color: #2d5016;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d5016 0%, #1f3610 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
}

.footer p {
    font-size: 14px;
    opacity: 0.9;
}

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

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

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

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        height: 500px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .products h2,
    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 36px;
    }

    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .benefits {
        grid-template-columns: 1fr;
    }
}