:root {
    --primary-color: #2E7D32;
    --secondary-color: #81C784;
    --text-color: #333333;
    --text-secondary: #666666;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { bottom: 0; }

/* Navigation Menu */
.nav-menu {
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 80px 2rem 2rem;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    /* Prevent body scroll */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(46, 125, 50, 0.3), rgba(46, 125, 50, 0.3));
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 1400px;
    z-index: 3;
    position: relative;
    padding: 0 40px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 120px 40px;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Products Preview */
.products-preview {
    padding: 120px 40px;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.product-bento-item.large .product-image {
    padding-bottom: 100%; /* Keep it square even for large items */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.2rem;
}

.learn-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.learn-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.samples-btn {
    width: 260px;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.samples-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.samples-btn i {
    font-size: 1.2rem;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Add margin to account for fixed header */
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.header-text {
    z-index: 2;
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.header-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
}

.feature i {
    font-size: 1.2rem;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
}

.header-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.header-image:hover img {
    transform: scale(1.05);
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-header {
        padding: 60px 0;
    }

    .header-text h1 {
        font-size: 3rem;
    }

    .header-text p {
        font-size: 1.1rem;
    }

    .header-features {
        gap: 20px;
    }

    .feature {
        padding: 10px 16px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-text h1 {
        font-size: 2.5rem;
    }

    .header-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .header-features {
        gap: 15px;
    }

    .feature {
        padding: 8px 14px;
    }

    .feature i {
        font-size: 1rem;
    }

    .feature span {
        font-size: 0.9rem;
    }

    .header-image {
        margin-top: 20px;
    }
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 600px;
    margin: 40px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 20px;
    }
}

/* Products Page Styles */
.products-hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.products-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.products-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
}

.products-bento-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-bento-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-bento-item.large {
    flex: 0 0 220px; /* Same size as other cards */
}

.product-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-bento-item:hover {
    transform: translateY(-5px);
}

.product-content {
    padding: 0.75rem;
    text-align: center;
}

.product-content h3 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-link {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.product-link:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Hide scrollbar but keep functionality */
.products-bento-grid::-webkit-scrollbar {
    display: none;
}

.products-bento-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 768px) {
    .product-bento-item {
        flex: 0 0 180px;
    }
    
    .product-bento-item.large {
        flex: 0 0 180px;
    }
    
    .product-image {
        height: 140px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 50px 40px;
    background: var(--light-bg);
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-bento-grid .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-item {
        padding: 40px 30px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .products-hero {
        padding: 80px 20px;
    }

    .products-hero h1 {
        font-size: 2.5rem;
    }

    .products-bento-grid {
        padding: 60px 0;
    }

    .products-bento-grid .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .bento-item.large,
    .bento-item.wide {
        grid-column: span 1;
    }

    .bento-item.large .product-image,
    .bento-item.wide .product-image {
        padding-bottom: 100%;
    }

    .product-content {
        padding: 25px;
    }

    .product-content h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        padding: 35px 25px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }

    .feature-item h3 {
        font-size: 1.25rem;
    }
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    margin: 0 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-option.email {
    background: var(--primary-color);
    color: var(--white);
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-option i {
    font-size: 1.3rem;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .samples-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .contact-option {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Fix for mobile slider */
@media (max-width: 768px) {
    .products-bento-grid {
        margin: 0;
        padding: 0 20px;
        width: 100%;
    }

    .products-section {
        overflow: hidden;
    }
}

/* Fix for modal */
.contact-modal {
    width: 100vw;
    max-width: 100vw;
}

.modal-content {
    margin: 0 20px;
}

/* Fix for hero section */
.hero {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

.hero-slideshow {
    width: 100%;
    overflow: hidden;
}

/* Fix for advantages section */
.advantages-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.bento-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.bento-item {
    min-width: fit-content;
    flex: 1;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.1);
}

.bento-item.large {
    flex: 2;
    min-width: 300px;
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-item .icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-item .icon-wrapper i {
    font-size: 24px;
    color: var(--white);
}

.bento-item h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.bento-image-container {
    margin-top: 1rem;
}

.bento-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.bento-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bento-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.bento-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 16px;
}

.bento-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.bento-table th,
.bento-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.bento-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.bento-table tr:hover {
    background-color: #f5f5f5;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.dimension-item {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.dimension-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.dimension-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dimension-item li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.structure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.structure-layers h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.structure-layers ul {
    list-style: none;
    padding: 0;
}

.structure-layers li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.structure-layers i {
    color: var(--primary-color);
    min-width: 16px;
}

.structure-image {
    text-align: center;
}

@media (max-width: 768px) {
    .bento-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .bento-item {
        padding: 20px;
    }
    
    .bento-item.large {
        flex: 1;
        min-width: auto;
    }
    
    .bento-item .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .bento-item .icon-wrapper i {
        font-size: 20px;
    }
    
    .structure-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dimensions-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-table {
        font-size: 0.9rem;
    }
    
    .bento-table th,
    .bento-table td {
        padding: 0.5rem;
    }
}

/* ===== DISPOSABLE TABLEWARE SECTION STYLES ===== */

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.material-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.material-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.material-item h4 i {
    font-size: 1.2rem;
}

.material-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.product-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.secondary-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.main-image:hover,
.secondary-image:hover {
    transform: scale(1.05);
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Product Features */
.product-features {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.product-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.spec-item {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.spec-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spec-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Highlight Text */
.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design for Disposable Tableware */
@media (max-width: 1024px) {
    .product-showcase,
    .product-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .material-item {
        padding: 1rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .secondary-image {
        height: 150px;
    }
    
    .product-features {
        padding: 1rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-text {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
}

/* ===== CONTACTS PAGE STYLES ===== */

/* Hero Map Section */
.hero-map-section {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(129, 199, 132, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.location-info {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.location-info p i {
    font-size: 1.2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Enhanced Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Enhanced Contact Form */
.contact-form {
    padding: 80px 0;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.form-actions .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.form-actions .cta-button i {
    font-size: 1rem;
}

/* Responsive Design for Contacts Page */
@media (max-width: 1024px) {
    .hero-map-section {
        height: 60vh;
    }
    
    .location-info h2 {
        font-size: 2rem;
    }
    
    .location-info p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-map-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .map-overlay {
        padding: 1rem;
    }
    
    .location-info {
        padding: 1.5rem;
    }
    
    .location-info h2 {
        font-size: 1.5rem;
    }
    
    .location-info p {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .location-details {
        gap: 0.5rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .contact-info {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-actions .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-map-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .location-info {
        padding: 1rem;
    }
    
    .location-info h2 {
        font-size: 1.3rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* Certificates Section */
.certificates-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.certificates-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2e7d32;
}

.certificates-swiper {
    padding: 20px 0;
}

.certificate-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.1);
    padding: 1rem;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-item img {
    width: 100%;
    /* height: 100%; */
    display: block;
    max-height: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .certificate-item {
        padding: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .features-grid,
    .products-grid {
        max-width: 1400px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-content {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .features-grid,
    .products-grid {
        max-width: 1200px;
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 60vh;
        padding: 80px 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
} 

.title {
    color: white;
}

/* QR Codes Section */
.qr-codes-section {
    padding: 40px 20px;
    background-color: var(--white);
    text-align: center;
    margin-top: 2rem;
}

.qr-codes-section .section-subtitle {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.qr-codes-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.qr-code-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.qr-code-item:hover {
    transform: translateY(-5px);
}

.qr-code-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Responsive Design for QR Codes */
@media (max-width: 768px) {
    .qr-codes-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .qr-code-item img {
        width: 120px;
        height: 120px;
    }
    
    .qr-code-item p {
        font-size: 1rem;
    }
}

.section-header h2, .section-header .section-subtitle, .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

section {
    margin-bottom: 64px;
}

@media (min-width: 1025px) {
    .products-bento-grid {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 50px;
        flex-wrap: wrap;
    }
    .product-bento-item {
        margin: 0;
        flex: 0 0 300px;
        max-width: 300px;
        min-width: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .products-bento-grid {
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .samples-btn {
        width: 100%;
    }
}

.scroll-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, transform 0.2s;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover, .scroll-to-top:focus {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.08);
}

.scroll-to-top i {
    pointer-events: none;
}

@media (max-width: 600px) {
    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}