/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2E7D32;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #2E7D32;
    color: white;
}

.btn.primary:hover,
.btn.primary:focus {
    background-color: #1B5E20;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: #FFC107;
    color: #1F2937;
}

.btn.secondary:hover,
.btn.secondary:focus {
    background-color: #FFB300;
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E7D32;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1F2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Products */
.products {
    padding: 4rem 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: #FAFAFA;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 150px;
    /* background-color: #E0E0E0; */
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50px;
}

.badge {
    background-color: #FFC107;
    color: #1F2937;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.mini-cta {
    text-align: center;
}

/* About */
.about {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.features ul {
    list-style: none;
}

.features li {
    margin-bottom: 0.5rem;
}

/* Quality */
.quality {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cert {
    background-color: #2E7D32;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #FAFAFA;
    position: relative;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial {
    flex: 0 0 100%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2E7D32;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.accordion-item {
    border-bottom: 1px solid #E0E0E0;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
}

.accordion-content {
    display: none;
    padding-bottom: 1rem;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    height: 120px;
    resize: vertical;
}

#success-message {
    text-align: center;
    color: #2E7D32;
    font-weight: bold;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #1F2937;
    color: white;
    padding: 2rem 0;
}

.footer-left, .footer-right {
    flex: 1;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-right ul {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-right li {
    margin-bottom: 0.5rem;
}

.social {
    display: flex;
    gap: 1rem;
}

.social a {
    color: white;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .certificates {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-slider {
        flex-direction: column;
    }

    .testimonial {
        margin: 0 0 1rem 0;
    }

    .prev, .next {
        position: static;
        margin: 0 0.5rem;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        margin-bottom: 1rem;
    }
}

/* Accessibility and motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}