﻿/* ============================================================
   MALWA AGRITECH
   WHEAT SEEDS FULL PAGE
   ============================================================ */

.malwa-wheat-page {
    --wheat-green: #176b3a;
    --wheat-dark: #073b22;
    --wheat-deep: #042817;
    --wheat-light: #eef8f1;
    --wheat-gold: #c99a24;
    --wheat-gold-light: #efd276;
    --wheat-text: #18231d;
    --wheat-muted: #68766e;
    --wheat-border: #e2ebe5;
    --wheat-white: #ffffff;
    color: var(--wheat-text);
    background: #ffffff;
    overflow: hidden;
}

.wheat-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================================
   HERO
   ============================================================ */

.wheat-hero {
    position: relative;
    padding: 85px 0 80px;
    background: linear-gradient( 135deg, #f5faf6 0%, #ffffff 52%, #f0f7f2 100% );
}

.wheat-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}


/* CONTENT */

.wheat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 30px;
    background: var(--wheat-light);
    color: var(--wheat-green);
    border: 1px solid #dcecdf;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
}

.wheat-eyebrow {
    margin: 24px 0 8px;
    color: var(--wheat-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.wheat-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -2px;
    font-weight: 900;
    color: var(--wheat-dark);
}

    .wheat-hero h1 span {
        color: var(--wheat-green);
        display: block;
    }

.wheat-hero-title {
    margin: 22px 0 12px;
    color: var(--wheat-dark);
    font-size: 21px;
    font-weight: 700;
}

.wheat-hero-description {
    max-width: 590px;
    margin: 0;
    color: var(--wheat-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* BUTTONS */

.wheat-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.wheat-primary-btn,
.wheat-secondary-btn {
    min-height: 46px;
    padding: 0 19px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

.wheat-primary-btn {
    color: #fff;
    background: var(--wheat-green);
}

    .wheat-primary-btn:hover {
        color: #fff;
        background: var(--wheat-dark);
        transform: translateY(-2px);
    }

.wheat-secondary-btn {
    color: var(--wheat-green);
    background: #fff;
    border: 1px solid #cfe0d4;
}

    .wheat-secondary-btn:hover {
        color: var(--wheat-dark);
        border-color: var(--wheat-green);
    }


/* HERO POINTS */

.wheat-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

    .wheat-hero-points div {
        display: flex;
        align-items: center;
        gap: 7px;
        color: var(--wheat-muted);
        font-size: 11px;
        font-weight: 700;
    }

    .wheat-hero-points i {
        color: var(--wheat-gold);
    }


/* ============================================================
   PRODUCT VISUAL
   ============================================================ */

.wheat-product-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheat-image-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(23,107,58,.07);
}

.wheat-product-card {
    position: relative;
    z-index: 2;
    width: min(350px, 75%);
    background: #fff;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(7,59,34,.14);
    border: 1px solid #e5eee8;
}

.wheat-product-top-label {
    text-align: center;
    color: var(--wheat-green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    padding: 8px;
}

.wheat-product-image {
    width: 100%;
    height: 330px;
    object-fit: contain;
    display: block;
}

.wheat-product-bottom {
    text-align: center;
    padding: 12px 5px 10px;
    border-top: 1px solid #edf1ee;
}

    .wheat-product-bottom strong {
        display: block;
        color: var(--wheat-dark);
        font-size: 17px;
        letter-spacing: 1px;
    }

    .wheat-product-bottom span {
        display: block;
        color: var(--wheat-gold);
        font-size: 9px;
        font-weight: 800;
        margin-top: 5px;
        letter-spacing: 1px;
    }


/* FLOATING */

.wheat-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    background: #fff;
    border: 1px solid #e1eae4;
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(0,0,0,.09);
}

    .wheat-floating-card i {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--wheat-light);
        color: var(--wheat-green);
    }

    .wheat-floating-card strong,
    .wheat-floating-card small {
        display: block;
    }

    .wheat-floating-card strong {
        color: var(--wheat-dark);
        font-size: 10px;
    }

    .wheat-floating-card small {
        margin-top: 2px;
        color: var(--wheat-muted);
        font-size: 8px;
    }

.wheat-floating-one {
    top: 70px;
    left: 0;
}

.wheat-floating-two {
    right: 0;
    bottom: 65px;
}


/* ============================================================
   SECTION HEADING
   ============================================================ */

.wheat-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.wheat-section-label {
    color: var(--wheat-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.wheat-section-heading h2 {
    margin: 9px 0 10px;
    color: var(--wheat-dark);
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.15;
}

    .wheat-section-heading h2 span {
        color: var(--wheat-green);
    }

.wheat-section-heading p {
    margin: 0;
    color: var(--wheat-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   INTRO
   ============================================================ */

.wheat-intro {
    padding: 75px 0 20px;
}


/* ============================================================
   VARIETIES
   ============================================================ */

.wheat-varieties-section {
    padding: 25px 0 80px;
}

.wheat-variety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wheat-variety-card {
    position: relative;
    padding: 25px 20px 20px;
    min-height: 250px;
    border: 1px solid var(--wheat-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
    transition: .3s ease;
    overflow: hidden;
}

    .wheat-variety-card:hover {
        transform: translateY(-6px);
        border-color: #cbded1;
        box-shadow: 0 18px 40px rgba(7,59,34,.10);
    }

.wheat-variety-number {
    position: absolute;
    top: 12px;
    right: 15px;
    color: #e7eee9;
    font-size: 27px;
    font-weight: 900;
}

.wheat-variety-icon {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wheat-light);
    color: var(--wheat-green);
}

.wheat-variety-card h3 {
    margin: 18px 0 5px;
    color: var(--wheat-dark);
    font-size: 20px;
}

.wheat-variety-type {
    color: var(--wheat-gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
}

.wheat-variety-card p {
    min-height: 53px;
    margin: 12px 0 18px;
    color: var(--wheat-muted);
    font-size: 11px;
    line-height: 1.6;
}

.wheat-variety-btn {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--wheat-green);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

    .wheat-variety-btn i {
        margin-left: 5px;
        transition: .2s ease;
    }

    .wheat-variety-btn:hover i {
        transform: translateX(4px);
    }


/* ============================================================
   TECHNICAL
   ============================================================ */

.wheat-technical-section {
    padding: 85px 0;
    background: #f6faf7;
}

.wheat-language-switch {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
}

.wheat-lang-btn {
    min-width: 100px;
    min-height: 39px;
    border: 1px solid #d5e2d9;
    background: #fff;
    color: var(--wheat-muted);
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

    .wheat-lang-btn.active {
        background: var(--wheat-green);
        border-color: var(--wheat-green);
        color: #fff;
    }

.wheat-table-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--wheat-border);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}

.wheat-tech-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

    .wheat-tech-table th {
        padding: 16px 18px;
        text-align: left;
        background: var(--wheat-dark);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
    }

    .wheat-tech-table td {
        padding: 14px 18px;
        border-bottom: 1px solid #edf1ee;
        color: var(--wheat-muted);
        font-size: 11px;
        line-height: 1.6;
    }

        .wheat-tech-table td:first-child {
            width: 35%;
            color: var(--wheat-dark);
            font-weight: 800;
        }

    .wheat-tech-table tr:last-child td {
        border-bottom: 0;
    }

    .wheat-tech-table tbody tr:hover td {
        background: #f8fbf9;
    }


/* ============================================================
   PACKAGING
   ============================================================ */

.wheat-packaging {
    padding: 70px 0;
}

.wheat-packaging-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border-radius: 17px;
    background: linear-gradient(135deg, #073b22, #176b3a);
    box-shadow: 0 20px 50px rgba(7,59,34,.15);
}

.wheat-packaging-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: var(--wheat-gold-light);
    font-size: 25px;
}

.wheat-packaging-card span {
    color: var(--wheat-gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.wheat-packaging-card h3 {
    margin: 6px 0;
    color: #fff;
    font-size: 24px;
}

.wheat-packaging-card p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 11px;
}


/* ============================================================
   QUALITY
   ============================================================ */

.wheat-quality {
    padding: 0 0 80px;
}

.wheat-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wheat-quality-card {
    padding: 28px 24px;
    border: 1px solid var(--wheat-border);
    border-radius: 15px;
    background: #fff;
    text-align: center;
}

.wheat-quality-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 12px;
    background: var(--wheat-light);
    color: var(--wheat-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheat-quality-card h3 {
    margin: 0 0 8px;
    color: var(--wheat-dark);
    font-size: 16px;
}

.wheat-quality-card p {
    margin: 0;
    color: var(--wheat-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* ============================================================
   CTA
   ============================================================ */

.wheat-cta {
    padding: 80px 0;
    background: #f4f8f5;
}

.wheat-cta-content {
    text-align: center;
}

    .wheat-cta-content > span {
        color: var(--wheat-gold);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .wheat-cta-content h2 {
        margin: 12px 0 10px;
        color: var(--wheat-dark);
        font-size: clamp(25px, 4vw, 38px);
    }

    .wheat-cta-content p {
        margin: 0;
        color: var(--wheat-muted);
        font-size: 13px;
    }

.wheat-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.wheat-cta-btn,
.wheat-cta-outline {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
}

.wheat-cta-btn {
    color: #fff;
    background: var(--wheat-green);
}

    .wheat-cta-btn:hover {
        color: #fff;
        background: var(--wheat-dark);
    }

.wheat-cta-outline {
    color: var(--wheat-green);
    border: 1px solid #cbded1;
    background: #fff;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .wheat-hero-grid {
        gap: 35px;
    }

    .wheat-variety-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .wheat-container {
        width: min(100% - 28px, 650px);
    }

    .wheat-hero {
        padding: 55px 0 55px;
    }

    .wheat-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .wheat-hero-content {
        text-align: center;
    }

    .wheat-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .wheat-hero-actions,
    .wheat-hero-points {
        justify-content: center;
    }

    .wheat-product-visual {
        min-height: 420px;
    }

    .wheat-floating-one {
        left: 5%;
    }

    .wheat-floating-two {
        right: 5%;
    }

    .wheat-variety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wheat-quality-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .wheat-container {
        width: calc(100% - 22px);
    }

    .wheat-hero {
        padding: 40px 0;
    }

        .wheat-hero h1 {
            font-size: 42px;
            letter-spacing: -1px;
        }

    .wheat-hero-title {
        font-size: 17px;
    }

    .wheat-hero-description {
        font-size: 12px;
        line-height: 1.7;
    }

    .wheat-hero-actions {
        flex-direction: column;
    }

    .wheat-primary-btn,
    .wheat-secondary-btn {
        width: 100%;
    }

    .wheat-hero-points {
        flex-direction: column;
        align-items: center;
        gap: 9px;
    }

    .wheat-product-visual {
        min-height: 360px;
    }

    .wheat-product-card {
        width: 72%;
    }

    .wheat-product-image {
        height: 250px;
    }

    .wheat-image-glow {
        width: 280px;
        height: 280px;
    }

    .wheat-floating-card {
        padding: 8px;
    }

        .wheat-floating-card i {
            width: 29px;
            height: 29px;
            font-size: 11px;
        }

        .wheat-floating-card strong {
            font-size: 9px;
        }

        .wheat-floating-card small {
            font-size: 7px;
        }

    .wheat-floating-one {
        top: 35px;
        left: 0;
    }

    .wheat-floating-two {
        right: 0;
        bottom: 35px;
    }

    .wheat-intro {
        padding-top: 55px;
    }

    .wheat-varieties-section {
        padding-bottom: 55px;
    }

    .wheat-variety-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wheat-variety-card {
        min-height: auto;
    }

    .wheat-technical-section {
        padding: 60px 0;
    }

    .wheat-tech-table {
        min-width: 560px;
    }

        .wheat-tech-table th,
        .wheat-tech-table td {
            padding: 12px;
            font-size: 10px;
        }

    .wheat-packaging {
        padding: 50px 0;
    }

    .wheat-packaging-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 18px;
    }

        .wheat-packaging-card h3 {
            font-size: 20px;
        }

    .wheat-quality {
        padding-bottom: 55px;
    }

    .wheat-cta {
        padding: 60px 0;
    }

    .wheat-cta-actions {
        flex-direction: column;
    }

    .wheat-cta-btn,
    .wheat-cta-outline {
        width: 100%;
    }
}


/* ============================================================
   EXTRA SMALL DEVICES
   ============================================================ */

@media (max-width: 360px) {

    .wheat-hero h1 {
        font-size: 36px;
    }

    .wheat-badge {
        font-size: 8px;
    }

    .wheat-product-card {
        width: 78%;
    }

    .wheat-floating-card {
        transform: scale(.88);
    }
}
/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.wheat-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

    .wheat-reveal.wheat-visible {
        opacity: 1;
        transform: translateY(0);
    }


@media (prefers-reduced-motion: reduce) {

    .malwa-wheat-page *,
    .malwa-wheat-page *::before,
    .malwa-wheat-page *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .wheat-reveal {
        opacity: 1;
        transform: none;
    }
}