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

:root {
    --primary-color: #1a4d6b;
    --secondary-color: #2d7aa8;
    --accent-color: #4a9fd8;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f0f7fb;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(26, 77, 107, 0.15);
    --shadow-lg: 0 10px 40px rgba(26, 77, 107, 0.2);
    --gradient-primary: linear-gradient(135deg, #1a4d6b 0%, #2d7aa8 50%, #4a9fd8 100%);
    --gradient-hero: linear-gradient(135deg, #1a4d6b 0%, #2d7aa8 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fff5e6;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500"><defs><pattern id="mithilaBg" x="0" y="0" width="500" height="500" patternUnits="userSpaceOnUse"><rect width="500" height="500" fill="%23fff5e6"/><g opacity="0.4"><path d="M100,200 Q120,180 140,200 T180,200" fill="%23ff6b6b" stroke="%23d63031" stroke-width="2"/><path d="M140,200 L150,190 L160,200 L150,210 Z" fill="%23ffd93d"/><circle cx="150" cy="200" r="3" fill="%23d63031"/><path d="M300,250 Q320,230 340,250 T380,250" fill="%23ff8787" stroke="%23c44569" stroke-width="2"/><path d="M340,250 L350,240 L360,250 L350,260 Z" fill="%23ffd93d"/><circle cx="350" cy="250" r="3" fill="%23c44569"/><path d="M200,350 Q220,330 240,350 T280,350" fill="%23ff6b6b" stroke="%23d63031" stroke-width="2"/><path d="M240,350 L250,340 L260,350 L250,360 Z" fill="%23ffd93d"/><circle cx="250" cy="350" r="3" fill="%23d63031"/></g><g opacity="0.35"><circle cx="150" cy="150" r="12" fill="%23ffd93d" stroke="%23fdcb6e" stroke-width="2"/><circle cx="150" cy="150" r="8" fill="%23fff5e6"/><circle cx="150" cy="150" r="4" fill="%23ff6b6b"/><circle cx="350" cy="200" r="12" fill="%23ff8787" stroke="%23ff6b6b" stroke-width="2"/><circle cx="350" cy="200" r="8" fill="%23fff5e6"/><circle cx="350" cy="200" r="4" fill="%23ffd93d"/><circle cx="250" cy="300" r="12" fill="%23ffd93d" stroke="%23fdcb6e" stroke-width="2"/><circle cx="250" cy="300" r="8" fill="%23fff5e6"/><circle cx="250" cy="300" r="4" fill="%23ff6b6b"/><circle cx="100" cy="300" r="12" fill="%23ff8787" stroke="%23ff6b6b" stroke-width="2"/><circle cx="100" cy="300" r="8" fill="%23fff5e6"/><circle cx="100" cy="300" r="4" fill="%23ffd93d"/></g><g opacity="0.3"><path d="M100,100 Q200,50 300,100" stroke="%23ff6b6b" fill="none" stroke-width="3"/><path d="M100,400 Q200,450 300,400" stroke="%23ff8787" fill="none" stroke-width="3"/><path d="M100,100 Q100,250 100,400" stroke="%23ffd93d" fill="none" stroke-width="3"/><path d="M300,100 Q300,250 300,400" stroke="%23ff6b6b" fill="none" stroke-width="3"/><path d="M50,250 Q250,200 450,250" stroke="%23ff8787" fill="none" stroke-width="2"/><path d="M250,50 Q250,250 250,450" stroke="%23ffd93d" fill="none" stroke-width="2"/></g><g opacity="0.25"><path d="M150,150 L250,150 L200,250 Z" fill="%23ffd93d"/><path d="M150,350 L250,350 L200,250 Z" fill="%23ff6b6b"/><circle cx="200" cy="250" r="40" fill="none" stroke="%23ff8787" stroke-width="2"/><circle cx="200" cy="250" r="60" fill="none" stroke="%23ffd93d" stroke-width="2"/></g></pattern></defs><rect width="100%" height="100%" fill="url(%23mithilaBg)"/></svg>');
    background-attachment: fixed;
    background-size: 500px 500px;
    position: relative;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: var(--bg-white);
    padding: 5px;
    border-radius: 5px;
}

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

.logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 192, 203, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><defs><pattern id="mithilaHero" x="0" y="0" width="400" height="400" patternUnits="userSpaceOnUse"><g opacity="0.5"><path d="M80,180 Q100,160 120,180 T160,180" fill="rgba(255,107,107,0.6)" stroke="rgba(214,48,49,0.8)" stroke-width="2.5"/><path d="M120,180 L130,170 L140,180 L130,190 Z" fill="rgba(255,217,61,0.7)"/><circle cx="130" cy="180" r="3" fill="rgba(214,48,49,0.9)"/><path d="M280,220 Q300,200 320,220 T360,220" fill="rgba(255,135,135,0.6)" stroke="rgba(196,69,105,0.8)" stroke-width="2.5"/><path d="M320,220 L330,210 L340,220 L330,230 Z" fill="rgba(255,217,61,0.7)"/><circle cx="330" cy="220" r="3" fill="rgba(196,69,105,0.9)"/><path d="M180,280 Q200,260 220,280 T260,280" fill="rgba(255,107,107,0.6)" stroke="rgba(214,48,49,0.8)" stroke-width="2.5"/><path d="M220,280 L230,270 L240,280 L230,290 Z" fill="rgba(255,217,61,0.7)"/><circle cx="230" cy="280" r="3" fill="rgba(214,48,49,0.9)"/></g><g opacity="0.4"><circle cx="120" cy="120" r="15" fill="rgba(255,217,61,0.5)" stroke="rgba(253,203,110,0.7)" stroke-width="2.5"/><circle cx="120" cy="120" r="10" fill="rgba(255,245,230,0.8)"/><circle cx="120" cy="120" r="5" fill="rgba(255,107,107,0.6)"/><circle cx="280" cy="160" r="15" fill="rgba(255,135,135,0.5)" stroke="rgba(255,107,107,0.7)" stroke-width="2.5"/><circle cx="280" cy="160" r="10" fill="rgba(255,245,230,0.8)"/><circle cx="280" cy="160" r="5" fill="rgba(255,217,61,0.6)"/><circle cx="200" cy="240" r="15" fill="rgba(255,217,61,0.5)" stroke="rgba(253,203,110,0.7)" stroke-width="2.5"/><circle cx="200" cy="240" r="10" fill="rgba(255,245,230,0.8)"/><circle cx="200" cy="240" r="5" fill="rgba(255,107,107,0.6)"/><circle cx="80" cy="240" r="15" fill="rgba(255,135,135,0.5)" stroke="rgba(255,107,107,0.7)" stroke-width="2.5"/><circle cx="80" cy="240" r="10" fill="rgba(255,245,230,0.8)"/><circle cx="80" cy="240" r="5" fill="rgba(255,217,61,0.6)"/></g><g opacity="0.35"><path d="M80,80 Q200,40 320,80" stroke="rgba(255,107,107,0.5)" fill="none" stroke-width="3"/><path d="M80,320 Q200,360 320,320" stroke="rgba(255,135,135,0.5)" fill="none" stroke-width="3"/><path d="M80,80 Q80,200 80,320" stroke="rgba(255,217,61,0.5)" fill="none" stroke-width="3"/><path d="M320,80 Q320,200 320,320" stroke="rgba(255,107,107,0.5)" fill="none" stroke-width="3"/><path d="M40,200 Q200,160 360,200" stroke="rgba(255,135,135,0.4)" fill="none" stroke-width="2.5"/><path d="M200,40 Q200,200 200,360" stroke="rgba(255,217,61,0.4)" fill="none" stroke-width="2.5"/></g><g opacity="0.3"><path d="M120,120 L220,120 L170,220 Z" fill="rgba(255,217,61,0.4)"/><path d="M120,280 L220,280 L170,180 Z" fill="rgba(255,107,107,0.4)"/><circle cx="170" cy="200" r="50" fill="none" stroke="rgba(255,135,135,0.4)" stroke-width="3"/><circle cx="170" cy="200" r="70" fill="none" stroke="rgba(255,217,61,0.35)" stroke-width="3"/></g></pattern></defs><rect width="100%" height="100%" fill="url(%23mithilaHero)"/></svg>');
    opacity: 0.7;
    z-index: 0;
    background-size: 400px 400px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
    border-top: 3px solid #ff6b6b;
    border-bottom: 3px solid #ffd93d;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(45, 80, 22, 0.1);
    box-shadow: var(--shadow);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 1));
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Products Section */
.products {
    background: rgba(255, 245, 230, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
    border-top: 3px solid #ffd93d;
    border-bottom: 3px solid #ff8787;
}

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

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.product-card:nth-child(1) {
    border-color: rgba(255, 217, 61, 0.3);
}

.product-card:nth-child(2) {
    border-color: rgba(255, 135, 135, 0.3);
}

.product-card {
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.product-card:nth-child(1):hover {
    border-color: #ffd93d;
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.3);
}

.product-card:nth-child(2):hover {
    border-color: #ff8787;
    box-shadow: 0 10px 40px rgba(255, 135, 135, 0.3);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #ffd93d 0%, #ff8787 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card:nth-child(1) .product-image {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb84d 100%);
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #ff8787 0%, #ff6b6b 100%);
}


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

.product-image img:not([src]),
.product-image img[src=""],
.product-image:has(img:not([src]))::before {
    content: "🌾";
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
}

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

.product-placeholder {
    font-size: 5rem;
    opacity: 0.8;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card:nth-child(1) .product-info h3 {
    color: #d63031;
}

.product-card:nth-child(2) .product-info h3 {
    color: #c44569;
}

.btn-view-packs {
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-view-packs:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pack Modal Styles */
.pack-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.pack-modal-content {
    background: white;
    margin: auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

.pack-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pack-modal-close:hover {
    color: #d63031;
}

.pack-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

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

.pack-option {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8d6 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pack-option:hover {
    transform: translateY(-5px);
    border-color: #ff8787;
    box-shadow: 0 5px 20px rgba(255, 135, 135, 0.3);
}

.pack-size {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63031;
    margin-bottom: 1rem;
}

.pack-price {
    font-size: 2rem;
    font-weight: 800;
    color: #c44569;
    margin-bottom: 1.5rem;
}

.btn-order {
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
}

.product-features li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
    border-top: 3px solid #ff8787;
    border-bottom: 3px solid #ff6b6b;
}

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

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(45, 80, 22, 0.1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    left: 0;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    color: white;
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-card:hover h3,
.benefit-card:hover p {
    color: white;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Contact Section */
.contact {
    background: rgba(255, 245, 230, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
    border-top: 3px solid #ffd93d;
    border-bottom: 3px solid #ff6b6b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 80, 22, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(107, 168, 58, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 90px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}
