/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8f5e9;
    z-index: 1000;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 100px;
}
.logo-img { height: 150px; width: auto; }
.nav { display: flex; gap: 32px; }
.nav a {
    font-weight: 500; font-size: 1.25rem;
    color: #444; transition: color 0.2s;
}
.nav a:hover { color: #2e7d32; }
.nav-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; cursor: pointer; color: #333;
}

/* ===== Hero ===== */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #fff; text-align: center;
}
.hero h1 {
    font-size: 3rem; font-weight: 700; margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: 1.4rem; font-weight: 300;
    margin-bottom: 24px; opacity: 0.9;
}
.hero-text {
    font-size: 1.1rem; max-width: 700px;
    margin: 0 auto 32px; opacity: 0.85;
    line-height: 1.7;
}
.btn {
    display: inline-block; padding: 14px 36px;
    border-radius: 6px; font-weight: 600;
    transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary {
    background: #ff8f00; color: #fff;
    font-size: 1.1rem;
}
.btn-primary:hover { background: #ef6c00; transform: translateY(-2px); }

/* ===== About ===== */
.about { padding: 100px 0; background: #f1f8e9; }
.about-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-text h2 {
    font-size: 2.2rem; color: #1b5e20;
    margin-bottom: 24px; font-weight: 700;
}
.about-text p { margin-bottom: 16px; color: #555; font-size: 1.05rem; }
.about-text h3 {
    font-size: 1.3rem; color: #1b5e20;
    margin: 32px 0 16px;
}
.features { list-style: none; }
.features li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 1.05rem; color: #444;
}
.icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; background: #2e7d32;
    color: #fff; border-radius: 50%; font-size: 0.85rem; font-weight: 700;
}
.about-image img { border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

/* ===== Services ===== */
.services { padding: 100px 0; }
.service-dark { background: #1b5e20; color: #fff; }
.service-dark p { color: rgba(255,255,255,0.85); }
.service-dark h2 { color: #fff; }
.service-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.service-grid.reverse { direction: rtl; }
.service-grid.reverse > * { direction: ltr; }
.service-text h2 {
    font-size: 2rem; margin-bottom: 20px;
    color: #1b5e20; font-weight: 700;
}
.service-dark .service-text h2 { color: #fff; }
.service-text p { margin-bottom: 16px; color: #555; font-size: 1.05rem; }
.service-image img { border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.brands-inline { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
    background: #2e7d32; color: #fff;
    padding: 6px 18px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
}
.service-dark .tag { background: #ff8f00; }

/* ===== Products ===== */
.section-title {
    text-align: center; font-size: 2.2rem;
    margin-bottom: 16px; color: #fff; font-weight: 700;
}
.section-intro {
    text-align: center; max-width: 800px;
    margin: 0 auto 48px; color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.08);
}
.product-card img {
    height: 50px; width: auto;
    margin-bottom: 20px;
}
.product-card h3 {
    font-size: 1.2rem; margin-bottom: 12px; color: #fff;
}
.product-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 16px; }
.link { color: #ffcc80; font-weight: 600; transition: color 0.2s; }
.link:hover { color: #ffb74d; }

/* ===== Contact ===== */
.contact { padding: 100px 0; background: #f1f8e9; }
.contact .section-title { color: #1b5e20; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; max-width: 900px; margin: 0 auto;
}
.contact-info h3, .contact-hours h3 {
    font-size: 1.4rem; color: #1b5e20; margin-bottom: 20px;
}
.contact-info p { margin-bottom: 16px; color: #555; line-height: 1.8; }
.contact-info a { color: #2e7d32; font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 8px; color: #555; border-bottom: 1px solid #e0e0e0; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: #333; width: 35%; }

/* ===== Footer ===== */
.footer {
    background: #1b5e20; color: rgba(255,255,255,0.6);
    padding: 32px 0; text-align: center; font-size: 0.9rem;
}
.footer a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer a:hover { color: #fff; }

/* ===== Modal ===== */
.modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
    background: #fff; padding: 40px; border-radius: 16px;
    max-width: 560px; width: 90%; position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.modal-content h2 { margin-bottom: 20px; color: #1b5e20; }
.modal-content p { margin-bottom: 12px; color: #555; }
.modal-close {
    position: absolute; top: 16px; right: 24px;
    font-size: 2rem; cursor: pointer; color: #999;
}
.modal-close:hover { color: #333; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .about-content, .service-grid, .contact-grid {
        grid-template-columns: 1fr; gap: 40px;
    }
    .service-grid.reverse { direction: ltr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .nav { display: none; }
    .nav-toggle { display: block; }
    .nav.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100px; left: 0; right: 0;
        background: #fff; padding: 24px; gap: 16px;
        border-bottom: 1px solid #e8f5e9; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .about { padding: 80px 0; }
    .services { padding: 80px 0; }
    .logo-img { height: 55px; }
    .nav-container { height: 90px; }
}
