* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f7f2;
    color: #172017;
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 82px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8ebe3;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 155px;
    height: auto;
    display: block;
    object-fit: contain;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar nav a {
    text-decoration: none;
    color: #30362f;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: #607c20;
}

.nav-whatsapp {
    text-decoration: none;
    background: #182018;
    color: white;
    padding: 12px 19px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.nav-whatsapp:hover {
    background: #607c20;
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 82px);
    padding: 80px 7%;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(157, 181, 103, 0.16),
            transparent 35%
        ),
        #f6f7f2;
}

.hero-content {
    max-width: 720px;
}

.eyebrow,
.section-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #607c20;
}

.eyebrow {
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
    color: #182018;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #607c20;
}

.hero-content > p {
    max-width: 620px;
    color: #62685e;
    font-size: 17px;
    line-height: 1.8;
}

.hero-content > p strong {
    color: #30372e;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 16px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary {
    background: #607c20;
    color: white;
}

.btn-primary span,
.btn-outline span {
    margin-left: 10px;
}

.btn-primary:hover {
    background: #4c6418;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #c5cbbd;
    color: #283026;
    background: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    border-color: #607c20;
    color: #607c20;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 0;
    margin-top: 55px;
    border-top: 1px solid #dce0d6;
    padding-top: 25px;
}

.hero-features div {
    min-width: 130px;
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #dce0d6;
}

.hero-features div:last-child {
    border-right: none;
}

.hero-features strong {
    display: block;
    font-size: 19px;
    margin-bottom: 5px;
}

.hero-features span {
    color: #777d73;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* HERO IMAGE */

.hero-product {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    width: 420px;
    height: 420px;
    position: absolute;
    border-radius: 50%;
    background: #dfe8cd;
    filter: blur(2px);
}

.hero-image-card {
    width: min(100%, 500px);
    height: 570px;
    background: white;
    position: relative;
    z-index: 2;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(32, 43, 27, 0.12);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 25px;
}

.image-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 12px 15px;
    background: rgba(24, 32, 24, 0.92);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #9bb75e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}


/* =========================
   TRUST BAR
========================= */

.trust-bar {
    background: #182018;
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 7%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 30px;
    border-right: 1px solid rgba(255,255,255,0.13);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item > span {
    font-size: 12px;
    color: #9bb75e;
    font-weight: 800;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.trust-item p {
    color: #9ba198;
    font-size: 12px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    padding: 140px 8%;
    background: white;
}

.about-grid {
    max-width: 1150px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-heading h2,
.section-heading h2,
.quality-header h2,
.cta-section h2,
.contact-section h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.about-heading h2 span,
.section-heading h2 span,
.quality-header h2 span,
.cta-section h2 span,
.contact-section h2 span {
    color: #607c20;
}

.about-text {
    padding-top: 8px;
}

.about-text p {
    color: #656b62;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #182018;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    border-bottom: 1px solid #182018;
    padding-bottom: 6px;
}

.text-link span {
    transition: 0.3s;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================
   PRODUCT
========================= */

.product-section {
    padding: 140px 7%;
    background: #f1f3eb;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 65px;
}

.section-heading .section-tag {
    margin-bottom: 22px;
}

.section-heading p {
    color: #6b7168;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 22px;
}

.product-showcase {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}


/* PRODUCT GALLERY */

.product-gallery {
    min-width: 0;
}

.main-image {
    width: 100%;
    height: 600px;
    background: white;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(34, 45, 27, 0.08);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25px;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.thumbnail {
    width: 90px;
    height: 75px;
    border: 2px solid transparent;
    padding: 0;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #607c20;
}

.thumbnail:hover {
    transform: translateY(-3px);
}


/* PRODUCT DETAILS */

.product-details {
    padding: 10px 0;
}

.product-number {
    color: #607c20;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 22px;
}

.product-details h3 {
    font-size: clamp(45px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.product-details h3 span {
    color: #607c20;
    display: block;
}

.product-description {
    color: #666d63;
    font-size: 16px;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 35px;
}


/* QUALITY LIST */

.quality-list {
    border-top: 1px solid #d5dacd;
    border-bottom: 1px solid #d5dacd;
    margin-bottom: 30px;
}

.quality-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #d5dacd;
}

.quality-item:last-child {
    border-bottom: none;
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dfe8cd;
    color: #607c20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    flex-shrink: 0;
}

.quality-item strong {
    font-size: 14px;
}

.quality-item p {
    color: #7a8077;
    font-size: 12px;
    margin-top: 5px;
}


/* PACKAGING */

.packaging-section > p {
    color: #777d74;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 12px;
}

.packaging-options {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.packaging-options span {
    background: white;
    border: 1px solid #ccd2c4;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 800;
}

.product-enquiry {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #607c20;
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.3s;
}

.product-enquiry:hover {
    background: #4e6619;
}

.product-enquiry span {
    font-size: 20px;
}


/* =========================
   QUALITY
========================= */

.quality-section {
    padding: 140px 7%;
    background: white;
}

.quality-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.quality-header .section-tag {
    margin-bottom: 22px;
}

.quality-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dce0d8;
    border-bottom: 1px solid #dce0d8;
}

.quality-card {
    padding: 45px 35px;
    border-right: 1px solid #dce0d8;
}

.quality-card:last-child {
    border-right: none;
}

.card-number {
    color: #607c20;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 60px;
}

.quality-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
}

.quality-card p {
    color: #71776f;
    line-height: 1.7;
    font-size: 14px;
}


/* =========================
   CTA
========================= */

.cta-section {
    margin: 0 7%;
    padding: 110px 8%;
    background: #182018;
    color: white;
}

.cta-section .section-tag {
    color: #9bb75e;
    margin-bottom: 25px;
}

.cta-section h2 {
    max-width: 800px;
}

.cta-section h2 span {
    color: #9bb75e;
}

.cta-section p {
    max-width: 570px;
    color: #aeb4a9;
    line-height: 1.8;
    margin: 25px 0 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: #9bb75e;
    color: #172017;
    padding: 17px 21px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transition: 0.3s;
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px);
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 140px 7%;
    background: #f6f7f2;
}

.contact-section > h2 {
    margin-top: 22px;
    margin-bottom: 65px;
}

.contact-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
}

.contact-block {
    padding: 24px 0;
    border-top: 1px solid #d8ddd3;
}

.contact-block:last-child {
    border-bottom: 1px solid #d8ddd3;
}

.contact-block > span {
    display: block;
    color: #7a8176;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-block a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #182018;
}

.contact-block a:hover {
    color: #607c20;
}

.contact-block p {
    color: #626960;
    font-size: 14px;
    line-height: 1.8;
}


/* CONTACT CARD */

.contact-card {
    background: #dfe8cd;
    padding: 45px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-icon {
    font-size: 30px;
    color: #607c20;
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.contact-card p {
    color: #5e655a;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 25px;
}

.contact-card a {
    color: #182018;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #111711;
    color: white;
    padding: 55px 7% 25px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-top img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-top p {
    color: #9ba198;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
}

.footer-bottom p,
.footer-bottom a {
    color: #737970;
    font-size: 11px;
}

.footer-bottom a {
    text-decoration: none;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .navbar {
        height: 72px;
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .nav-whatsapp {
        padding: 10px 13px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 65px 5%;
        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(45px, 12vw, 68px);
    }

    .hero-image-card {
        height: 450px;
    }

    .hero-glow {
        width: 330px;
        height: 330px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
        padding: 15px 5%;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.13);
        padding: 20px 10px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .about-section,
    .product-section,
    .quality-section,
    .contact-section {
        padding: 90px 5%;
    }

    .about-grid,
    .product-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-grid {
        margin-top: 40px;
    }

    .main-image {
        height: 450px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        border-right: none;
        border-bottom: 1px solid #dce0d8;
    }

    .quality-card:last-child {
        border-bottom: none;
    }

    .card-number {
        margin-bottom: 35px;
    }

    .cta-section {
        margin: 0 5%;
        padding: 80px 7%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}


@media (max-width: 500px) {

    .logo img {
        width: 125px;
    }

    .nav-whatsapp {
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
    }

    .hero-features {
        justify-content: space-between;
    }

    .hero-features div {
        min-width: auto;
        padding-right: 12px;
        margin-right: 12px;
    }

    .hero-features strong {
        font-size: 16px;
    }

    .hero-image-card {
        height: 380px;
    }

    .main-image {
        height: 350px;
    }

    .thumbnail {
        width: 75px;
        height: 65px;
    }

    .contact-card {
        padding: 30px;
    }
}