* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    width: 94%;
    max-width: 1600px;
    margin: auto;
}

.site-header {
    background: #006c10;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}

.text-logo,
.footer-text-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.text-logo {
    font-size: 48px;
}

.footer-text-logo {
    font-size: 34px;
}

.text-logo:hover,
.text-logo:focus,
.text-logo:active,
.text-logo:visited {
    text-decoration: none;
}

.logo-white {
    color: #e9fff0;
    text-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 0 6px rgba(255,255,255,0.08);
}

.logo-yellow {
    color: #ffd91a;
    text-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 0 6px rgba(255,217,26,0.12);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 6px auto;
    border-radius: 5px;
    transition: 0.3s ease;
}

.nav-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    transition: 0.3s ease;
}

.menu a:hover,
.menu a.active {
    background: #ffd91a;
    color: #111111;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.icon-btn {
    width: 54px;
    height: 54px;
    background: #ffd91a;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
}

.social-svg {
    width: 24px;
    height: 24px;
    fill: #111111;
    display: block;
}

/* HERO SLIDER */
.hero-green {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #006f25;
}

.hero-slider {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 56, 10, 0.55) 0%, rgba(0, 80, 20, 0.18) 60%, rgba(0, 0, 0, 0.10) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    padding: 60px 0;
    min-height: 620px;
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 24px;
    color: #eef8ef;
    max-width: 760px;
    margin-bottom: 30px;
}

.hero-main-btn {
    display: inline-block;
    background: #ffd91a;
    color: #111111;
    text-decoration: none;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 14px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
}

.hero-dots span {
    width: 13px;
    height: 13px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.9;
    cursor: pointer;
}

.hero-dots span.active {
    background: #ffffff;
}

.feature-strip {
    background: #efefef;
    padding: 22px 0 36px;
}

.feature-grid {
    display: grid;
    gap: 18px;
}

.custom-seven-grid {
    grid-template-columns: repeat(7, 1fr);
}

.feature-box {
    background: #ffffff;
    border-radius: 16px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #18321f;
    box-shadow: 0 5px 16px rgba(0,0,0,0.08);
}

.section-intro {
    padding: 70px 0 80px;
    text-align: center;
    background: #ffffff;
}

.section-intro h2 {
    font-size: 52px;
    color: #0b4f16;
    margin-bottom: 18px;
    line-height: 1.15;
}

.section-intro p {
    max-width: 980px;
    margin: auto;
    font-size: 24px;
    color: #444444;
}

.site-footer {
    background: #006c10;
    color: #ffffff;
    padding-top: 18px;
    padding-bottom: 82px;
}

.footer-top,
.footer-bottom {
    display: none;
}

.footer-fixed-social {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #006c10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    padding: 14px 20px;
    z-index: 999;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    display: block;
}

/* Desktop */
@media (min-width: 992px) {
    .text-logo {
        font-size: 56px;
    }

    .site-footer {
        padding-bottom: 18px;
    }

    .footer-top,
    .footer-bottom {
        display: block;
    }

    .footer-fixed-social {
        display: none;
    }
}

/* Large tablets */
@media (max-width: 1200px) {
    .custom-seven-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-text h1 {
        font-size: 54px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .text-logo {
        font-size: 44px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .text-logo {
        font-size: 38px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-area {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: #006c10;
        padding: 14px;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.18);
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .nav-area.active {
        display: flex;
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .menu a {
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 12px;
    }

    .header-actions {
        justify-content: center;
        padding-top: 6px;
    }

    .hero-green {
        min-height: 520px;
    }

    .hero-grid {
        min-height: 520px;
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 42px;
        max-width: 100%;
    }

    .hero-text p {
        font-size: 18px;
        max-width: 100%;
    }

    .custom-seven-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-box {
        min-height: 110px;
        font-size: 18px;
        border-radius: 14px;
    }

    .section-intro h2 {
        font-size: 34px;
    }

    .section-intro p {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-header {
        padding: 6px 0;
    }

    .header-wrap {
        min-height: 64px;
    }

    .text-logo {
        font-size: 32px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        margin: 5px auto;
    }

    .nav-area {
        top: calc(100% + 6px);
        padding: 12px;
        border-radius: 12px;
    }

    .menu a {
        font-size: 13px;
        padding: 11px 10px;
    }

    .header-actions {
        gap: 12px;
    }

    .icon-btn {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .social-svg {
        width: 20px;
        height: 20px;
    }

    .hero-green {
        min-height: 430px;
    }

    .hero-grid {
        min-height: 430px;
        padding: 24px 0;
    }

    .hero-text h1 {
        font-size: 22px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 16px;
        max-width: 320px;
    }

    .hero-main-btn {
        padding: 12px 22px;
        font-size: 12px;
    }

    .hero-dots {
        margin-top: 14px;
        justify-content: center;
    }

    .hero-dots span {
        width: 10px;
        height: 10px;
    }

    .feature-strip {
        padding: 16px 0 22px;
    }

    .custom-seven-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .feature-box {
        min-height: 92px;
        font-size: 13px;
        line-height: 1.3;
        padding: 12px 8px;
        border-radius: 12px;
    }

    .section-intro {
        padding: 34px 0 38px;
    }

    .section-intro h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-intro p {
        font-size: 15px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .text-logo {
        font-size: 30px;
    }

    .hero-text h1 {
        font-size: 21px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .custom-seven-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box {
        min-height: 86px;
        font-size: 13px;
    }

    .footer-fixed-social {
        gap: 36px;
    }

    .footer-svg {
        width: 24px;
        height: 24px;
    }
}