:root {
    --dark-green: #123524;
    --primary-green: #1f6b3b;
    --mid-green: #2f8a46;
    --soft-green: #e7f5e7;
    --light-green: #f5fbf5;
    --text-dark: #1f2d23;
    --text-soft: #5b6e60;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(18, 53, 36, 0.12);
    --radius: 18px;
}

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

body {
    font-family: "Outfit", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-green);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 6px 20px rgba(18, 53, 36, 0.18);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 700;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-mark-svg svg {
    width: 28px;
    height: 28px;
    display: block;
}

.brand-name {
    font-size: 1.1rem;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 999px;
}

.hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, rgba(18, 53, 36, 0.92), rgba(47, 138, 70, 0.82));
}

.overlay {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1600&q=80") center/cover;
    opacity: 0.18;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 12px;
}

.tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.08rem;
}

.hero-search-wrap {
    max-width: 640px;
    margin: 24px auto 0;
}

.hero-search-input {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(18, 53, 36, 0.2);
}

.btn {
    display: inline-block;
    margin-top: 24px;
    padding: 13px 26px;
    border-radius: 999px;
    background: var(--mid-green);
    color: var(--white);
    font-weight: 700;
    transition: 0.25s ease;
    text-align: center;
}

.btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--dark-green);
}

.small-btn {
    padding: 11px 20px;
    font-size: 0.95rem;
}

.stats {
    padding: 30px 0;
    background: var(--soft-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-box {
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    padding: 28px 20px;
    box-shadow: var(--shadow);
}

.stat-box h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 6px;
}

.section {
    padding: 70px 0;
}

.section h2,
.page-banner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-green);
    margin-bottom: 12px;
    text-align: center;
}

.section-text,
.page-banner p {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--text-soft);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card,
.simple-content,
.contact-form-box,
.contact-info-box,
.highlight-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card {
    padding: 28px;
    border-top: 5px solid var(--mid-green);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);
    background: #f0faf0;
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.highlight {
    padding: 80px 0;
    background: linear-gradient(rgba(18, 53, 36, 0.78), rgba(31, 107, 59, 0.78)),
        url("https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.highlight-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.highlight-box h2 {
    text-align: center;
    margin-bottom: 14px;
}

.green-section {
    background: linear-gradient(180deg, #eef9ee, #dff2df);
}

.cta {
    padding: 70px 0;
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.page-banner {
    padding: 90px 0 70px;
    text-align: center;
    background: linear-gradient(135deg, #dff2df, #f4fbf4);
}

.simple-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px;
}

.simple-content h2,
.simple-content h3 {
    text-align: left;
}

.simple-content h3 {
    margin-top: 26px;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.contact-form-box,
.contact-info-box {
    padding: 30px;
}

.contact-form-box h2,
.contact-info-box h3 {
    text-align: left;
    margin-bottom: 16px;
    color: var(--dark-green);
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #cfe3cf;
    font: inherit;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-table th {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px;
    text-align: left;
}

.product-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #e3efe3;
}

.product-table tr:hover {
    background: #f3fbf3;
}

.subdivision-header {
    margin-bottom: 28px;
}

.subdivision-header h1 {
    text-align: left;
    color: var(--dark-green);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.subdivision-header p {
    text-align: left;
    color: var(--text-soft);
    max-width: 620px;
}

.product-search-box {
    max-width: 820px;
    margin-bottom: 24px;
}

.product-search-input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #d4e8d4;
    border-radius: 16px;
    font: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    box-shadow: var(--shadow);
}

.product-search-input:focus {
    outline: none;
    border-color: var(--mid-green);
    box-shadow: 0 0 0 4px rgba(47, 138, 70, 0.12);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 820px;
}

.product-detail-card {
    background: var(--white);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid #dceddc;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px;
    align-items: start;
}

.product-image-square {
    width: 100%;
    aspect-ratio: 1 / 2;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #dff0df;
    background: #eef8ee;
}

.product-image-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-card h2 {
    color: var(--primary-green);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.product-detail-info {
    min-height: 180px;
}

.detail-row {
    padding: 14px 0;
    border-bottom: 1px solid #e3efe3;
}

.detail-row:last-child {
    border-bottom: 0;
}

.detail-row span {
    display: block;
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.detail-row strong {
    color: var(--dark-green);
    font-size: 1rem;
}

.search-empty-message {
    max-width: 820px;
    margin-top: 18px;
    color: var(--primary-green);
    font-weight: 600;
}

.site-footer {
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 18px;
}

.reveal {
    opacity: 1;
    transform: none;
}

@media (min-width: 1100px) {
    .hero {
        min-height: 92vh;
    }

    .hero-content {
        max-width: 900px;
    }

    .section {
        padding: 82px 0;
    }

    .product-detail-grid,
    .product-search-box,
    .search-empty-message {
        max-width: 920px;
    }

    .product-detail-card {
        grid-template-columns: 280px 1fr;
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .stats-grid,
    .contact-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        min-height: 76vh;
    }

    .hero-content {
        max-width: 700px;
    }

    .product-detail-card {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1180px, calc(100% - 24px));
    }

    .nav-wrap {
        padding: 14px 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        background: var(--dark-green);
        border-radius: 16px;
        padding: 14px;
        display: none;
        box-shadow: 0 18px 35px rgba(18, 53, 36, 0.24);
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        display: block;
    }

    .stats-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 74vh;
        padding: 90px 0 60px;
    }

    .section {
        padding: 54px 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    .hero p,
    .section-text,
    .page-banner p,
    .subdivision-header p {
        font-size: 0.98rem;
    }

    .highlight-box,
    .simple-content,
    .contact-form-box,
    .contact-info-box {
        padding: 24px;
    }

    .product-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }

    .product-image-square,
    .product-detail-info {
        max-width: 100%;
    }

    .product-image-square {
        width: min(100%, 280px);
        margin: 0 auto;
    }

    .product-detail-info {
        min-height: auto;
    }

    .detail-row {
        padding: 12px 0;
    }

    .product-search-input {
        padding: 14px 16px;
        font-size: 0.96rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 0.98rem;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: 68vh;
        padding: 78px 0 48px;
    }

    .tag {
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    .btn,
    .btn-light,
    .small-btn {
        width: 100%;
    }

    .stat-box,
    .card,
    .simple-content,
    .contact-form-box,
    .contact-info-box,
    .highlight-box,
    .product-detail-card {
        border-radius: 16px;
    }

    .section h2,
    .page-banner h1,
    .subdivision-header h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .product-image-square {
        width: min(100%, 220px);
    }
}
