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

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

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5530;
}

.nav-logo i {
    margin-right: 10px;
    color: #ffa500;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5530;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Slider */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateZ(-50px) rotateY(10deg);
}

.slide.active {
    opacity: 1;
    transform: translateZ(0) rotateY(0deg);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.selling-points {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.point:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.point i {
    color: #ffa500;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2c5530;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Slider Controls */

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffa500;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}

/* 3D Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-egg, .floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

/* PC/Desktop positioning for floating elements */
.egg-1 {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.egg-2 {
    top: 50%;
    right: 8%;
    animation-delay: 2s;
}

.egg-3 {
    bottom: 25%;
    right: 12%;
    animation-delay: 4s;
}

.leaf-1 {
    top: 35%;
    right: 5%;
    animation-delay: 1s;
    transform: rotate(45deg);
}

.leaf-2 {
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(-30deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

/* 3D Perspective Effects */
.hero-slider::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ffa500, #ff8c00, #ffa500);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255,165,0,0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(255,165,0,0.6);
    }
}

/* CSS-based HD placeholder images for background slider */
.hero-bg-img[src*="hero-farm-eggs.jpg"] {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #F4A460 100%);
    position: relative;
}

.hero-bg-img[src*="hero-farm-eggs.jpg"]:before {
    content: "🥚";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-bg-img[src*="farm-landscape.jpg"] {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
    position: relative;
}

.hero-bg-img[src*="farm-landscape.jpg"]:before {
    content: "🌾";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-bg-img[src*="chickens-pasture.jpg"] {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
    position: relative;
}

.hero-bg-img[src*="chickens-pasture.jpg"]:before {
    content: "🐔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-bg-img[src*="egg-collection.jpg"] {
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 50%, #F0E68C 100%);
    position: relative;
}

.hero-bg-img[src*="egg-collection.jpg"]:before {
    content: "🧺";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: #8B4513;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.image-placeholder {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    width: 300px;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-placeholder.fallback {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: white;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.product-img:hover {
    transform: scale(1.08);
}

/* CSS-based HD placeholder images for products */
.product-img[src*="large-brown-eggs.jpg"] {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #D2691E 100%);
    background-size: 100% 100%;
    position: relative;
}

.product-img[src*="large-brown-eggs.jpg"]:before {
    content: "🥚";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-img[src*="medium-white-eggs.jpg"] {
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 50%, #F0E68C 100%);
    background-size: 100% 100%;
    position: relative;
}

.product-img[src*="medium-white-eggs.jpg"]:before {
    content: "🥚";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.3rem;
    color: #8B4513;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.product-img[src*="mixed-color-eggs.jpg"] {
    background: linear-gradient(135deg, #8B4513 0%, #F5F5DC 30%, #4682B4 60%, #8B4513 100%);
    background-size: 100% 100%;
    position: relative;
}

.product-img[src*="mixed-color-eggs.jpg"]:before {
    content: "🥚";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-image i.fallback-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffa500;
    z-index: -1;
}

/* Egg size representations */
.product-image i.egg-small {
    font-size: 1.8rem;
}

.product-image i.egg-medium {
    font-size: 2.3rem;
}

.product-image i.egg-large {
    font-size: 2.8rem;
}

.product-image i.egg-xtra-large {
    font-size: 3.3rem;
}

.product-image i.egg-jumbo {
    font-size: 3.8rem;
}

.product-info h3 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
}

.product-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.size, .type {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c5530;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 10px;
}

.availability {
    color: #28a745;
    font-weight: 500;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.offer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.offer-badge i {
    color: #ffd700;
    font-size: 1.5rem;
}

.special-offer h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.special-offer p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Reseller Section */
.reseller-section {
    padding: 80px 20px;
    background: #2c5530;
    color: white;
}

.reseller-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffa500;
    margin-bottom: 50px;
}

.reseller-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.reseller-info h3 {
    color: #ffa500;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.reseller-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.reseller-product {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.reseller-product h4 {
    color: #ffa500;
    margin-bottom: 10px;
}

.minimum-order {
    background: rgba(255,165,0,0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.minimum-order i {
    color: #ffa500;
    font-size: 1.5rem;
}

.reseller-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reseller-image .image-placeholder {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    width: 300px;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.reseller-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.reseller-image .image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.about-text h3 {
    color: #2c5530;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.farming-methods {
    display: grid;
    gap: 30px;
}

.method {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.method i {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 15px;
}

.method h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.method p {
    color: #666;
}

/* About Image Styles */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* CSS-based HD placeholder for about image */
.about-img[src*="family-farm.jpg"] {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
    background-size: 100% 100%;
    position: relative;
}

.about-img[src*="family-farm.jpg"]:before {
    content: "🏡";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Farm Gallery Section */
.farm-gallery {
    padding: 80px 20px;
    background: #f8f9fa;
}

.farm-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    line-height: 0;
}

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

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

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

/* CSS-based HD placeholder images for gallery */
.gallery-img[src*="free-range-chickens.jpg"] {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
    background-size: 100% 100%;
    position: relative;
}

.gallery-img[src*="free-range-chickens.jpg"]:before {
    content: "🐔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-img[src*="chicken-coop.jpg"] {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #D2691E 100%);
    background-size: 100% 100%;
    position: relative;
}

.gallery-img[src*="chicken-coop.jpg"]:before {
    content: "🏠";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-img[src*="fresh-eggs-collection.jpg"] {
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 50%, #F0E68C 100%);
    background-size: 100% 100%;
    position: relative;
}

.gallery-img[src*="fresh-eggs-collection.jpg"]:before {
    content: "🧺";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-img[src*="family-farmers.jpg"] {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 50%, #FFA500 100%);
    background-size: 100% 100%;
    position: relative;
}

.gallery-img[src*="family-farmers.jpg"]:before {
    content: "👨‍🌾";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.customer {
    color: #2c5530;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2c5530;
    font-size: 1.1rem;
}

.faq-question i {
    color: #ffa500;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
}

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

.order-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #ffa500;
    width: 30px;
}

.contact-method h4 {
    color: #2c5530;
    margin-bottom: 5px;
}

.contact-method p {
    color: #666;
}

.delivery-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.delivery-info h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.delivery-info ul {
    list-style: none;
}

.delivery-info li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.delivery-info li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Extras Section */
.extras {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.blog-section h3,
.newsletter h3,
.social-media h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.blog-post {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-post h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.blog-post p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #ffa500;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.newsletter {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter p {
    color: #666;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.social-media {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffa500;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 10px;
    color: #ffa500;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ffa500;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffa500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3d6b42;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

    .nav-menu a {
        display: block;
        padding: 15px;
        margin: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .selling-points {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }


    .slider-dots {
        bottom: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .newsletter form {
        flex-direction: column;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .products,
    .about,
    .testimonials,
    .faq,
    .contact,
    .extras {
        padding: 60px 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .order-form {
        padding: 25px;
    }

    .hero-img,
    .image-placeholder {
        width: 300px;
        height: 300px;
    }

    .image-placeholder i {
        font-size: 3rem;
    }

    .product-image {
        height: 200px;
    }

    .gallery-img {
        height: 250px;
    }

    .about-img {
        height: 300px;
        max-width: 350px;
    }

    .reseller-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reseller-products {
        grid-template-columns: 1fr;
    }

    .special-offer h3 {
        font-size: 2rem;
    }

    .offer-badge {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        width: 300px;
        height: 300px;
    }

    .slide-overlay h3 {
        font-size: 1.2rem;
    }

    .slide-overlay p {
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .floating-egg, .floating-leaf {
        font-size: 1.5rem;
    }

    /* Mobile positioning for floating elements - keep current positions */
    .egg-1 {
        top: 20%;
        left: 10%;
    }

    .egg-2 {
        top: 60%;
        right: 15%;
    }

    .egg-3 {
        bottom: 20%;
        left: 20%;
    }

    .leaf-1 {
        top: 30%;
        right: 10%;
        transform: rotate(45deg);
    }

    .leaf-2 {
        bottom: 30%;
        right: 25%;
        transform: rotate(-30deg);
    }
}
