/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* SECTION */
.food-wrapper-section {
    padding: 60px 0;
}

/* CONTAINER */
.food-wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    /* padding: 20px 20px; */
    margin-top: 80px;
}

/* LEFT IMAGE */
.food-wrapper-image {
    flex: 1;
}

.food-wrapper-image img {
    width: 100%;
    height: auto;
    /* border-radius: 24px; */
    display: block;
}

/* RIGHT CONTENT */
.food-wrapper-content {
    flex: 1;
}

.food-wrapper-content h1 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.food-wrapper-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555555;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .food-wrapper-container {
        flex-direction: column;
        gap: 20px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .food-wrapper-content h1 {
        font-size: 26px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .applications-intro {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
}

/* SECTION BACKGROUND */
.product-variants-section {
    background-color: #c9e68a;
    padding: 10px 0 90px;
}

/* TITLE */
.variants-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: center;
}

/* GRID */
.variants-grid {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
}

/* CARD */
.variant-card {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.variant-card img {
    width: 100%;
    height: 260px;
    background: #f0f0f0;
    display: block;
}

/* LABEL BAR */
.variant-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2f9d57;
    color: #ffffff;
    text-align: center;
    padding: 12px 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 1300px) {
    .variants-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .applications-intro {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 1100px) {
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .variants-grid {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* SCROLL ANIMATION BASE */
[data-anim] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-anim="from-left"] {
    transform: translateX(-60px);
}

[data-anim="from-right"] {
    transform: translateX(60px);
}

[data-anim].show {
    opacity: 1;
    transform: translateX(0);
}

/* SECTION */
.why-choose-section {
    position: relative;
    padding: 30px 0;
    background-image: linear-gradient(rgba(5, 20, 10, 0.55), rgba(3, 7, 6, 0.8)), url("../images/food-wrap/background%20section.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 45, 25, 0.55), rgba(0, 0, 0, 0.35));
    z-index: 0;
}

/* CONTAINER */
.why-choose-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* TITLE */
.why-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 45px;
}

/* LIST */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ITEM */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* ICON */
.why-icon {
    width: 42px;
    height: 42px;
    background-color: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* TEXT */
.why-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
}

.why-text strong {
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-title {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
}

/* SECTION */
.specialized-section {
    padding: 30px 0;
}

/* CONTAINER */
.specialized-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT CONTENT */
.specialized-content {
    flex: 1.2;
}

.specialized-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #444;
}

/* LIST */
.specialized-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ITEM */
.specialized-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.specialized-item strong {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.specialized-item p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
}

/* CHECK ICON */
.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #1ea64b;
    color: #1ea64b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* RIGHT IMAGE */
.specialized-image {
    flex: 1;
    text-align: right;
}

.specialized-image img {
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1/1;
    object-position: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .specialized-container {
        flex-direction: column;
        gap: 40px;
    }

    .specialized-image {
        text-align: center;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

/* SECTION */
.applications-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    /* padding: 80px 0; */
}

/* TITLE */
.applications-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 12px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: #1ea64b;
    margin: 0 auto 35px;
}

/* INTRO TEXT */
.applications-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}

/* GRID */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* CARD */
.application-card {
    border: 1px solid #1ea64b;
    padding: 28px 24px;
    background: #ffffff;
}

.application-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.application-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
}

/* FOOTER TEXT */
.applications-footer-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
    max-width: 1100px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .applications-title {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

/* SECTION */
.sizes-section {
    padding: 80px 0;
}

/* CONTAINER */
.sizes-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.sizes-image {
    flex: 1;
}

.sizes-image img {
    width: 100%;
    height: auto;
    /* border-radius: 24px; */
    display: block;
}

/* CONTENT */
.sizes-content {
    flex: 1;
}

.sizes-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: left;
}

.sizes-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sizes-container {
        flex-direction: column;
        gap: 40px;
    }

    .sizes-content h2 {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* SECTION */
.sustainability-contact-section {
    background: #3a8f3f;
    padding: 80px 0;
}

/* CONTAINER */
.sustainability-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/* Contact Section */
.grease-paper-contact-gradient-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;
}

.grease-paper-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.grease-paper-contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.grease-paper-contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.grease-paper-contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

.grease-paper-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.grease-paper-contact-form-group {
    margin-bottom: 20px;
    width: 93%;
}

.grease-paper-contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 25px;
}

.grease-paper-contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.grease-paper-contact-form-group input,
.grease-paper-contact-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.grease-paper-contact-form-group input::placeholder,
.grease-paper-contact-form-group textarea::placeholder {
    color: #666;
}

.grease-paper-contact-form-group input:focus,
.grease-paper-contact-form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.grease-paper-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.grease-paper-contact-btn-primary {
    width: 50%;
    padding: 15px;
    background: #ffc107;
    color: #1b5e20;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 25%;
}

.grease-paper-contact-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.grease-paper-contact-sustainability-content p {
    color: #fff;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.grease-paper-contact-sustainability-image {
    margin-top: 30px;
    text-align: center;
    transition: all 1s ease-out;
}

.grease-paper-contact-sustainability-image img {
    width: 100%;
    max-width: 373px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .grease-paper-contact-gradient-section {
        padding: 20px 16px;
    }

    .grease-paper-contact-green-layout {
        flex-direction: column;
        gap: 28px;
        align-items: stretch;
    }

    .grease-paper-contact-form-section,
    .grease-paper-contact-content-section {
        flex: 0 0 auto;
        width: 100%;
    }

    .grease-paper-contact-form-group {
        width: 100%;
    }

    .grease-paper-contact-btn-primary {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .grease-paper-contact-form-container {
        padding: 18px;
    }

    .grease-paper-contact-form-section h3,
    .grease-paper-contact-content-section h3 {
        font-size: 1.5rem;
        margin-top: 0;
    }
}

/* LEFT FORM */
.contact-form-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 35px;
    border-radius: 12px;
    width: 420px;
}

.contact-form-box h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    background: #eef5ec;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
}

.contact-form-box textarea {
    height: 120px;
    resize: none;
}

/* RIGHT CONTENT */
.sustainability-text {
    flex: 1;
    color: #ffffff;
}

.sustainability-text h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sustainability-text p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.sustainability-text img {
    margin-top: 25px;
    max-width: 340px;
    border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .sustainability-contact-container {
        flex-direction: column;
    }

    .contact-form-box {
        width: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* FIX HEADER OVERLAP */
.g-faq-section {
    /* padding: 120px 0 80px; */
    background: #eef6fb;
}

/* CENTER CONTENT PROPERLY */
.container {
    max-width: 1100px;
    margin: 0 auto;

}

/* FAQ TITLE */
.g-faq-title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 40px;
}

/* FAQ CARD */
.g-faq-item {
    background: #fff;
    border: 1px solid #cde9c1;
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 6px 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* QUESTION ROW */
.g-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #4f6fa6;
    cursor: pointer;
}

/* PLUS BUTTON */
.g-faq-toggle {
    width: 32px;
    height: 32px;
    border: 1.5px solid #2e7d32;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2e7d32;
    transition: 0.3s ease;
}

/* ANSWER */
.g-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.g-faq-answer p {
    padding: 10px 0 18px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

/* ACTIVE */
.g-faq-item.active .g-faq-answer {
    max-height: 250px;
}

.g-faq-item.active .g-faq-toggle {
    transform: rotate(45deg);
    background: #2e7d32;
    color: #fff;
}