﻿/* =========================================================
   RADHIKA SEEDS - WHEAT PAGE
   ISOLATED CSS
   ========================================================= */

.rs-wheat-page {
    --wheat-navy: #101b2d;
    --wheat-navy-2: #18263d;
    --wheat-blue: #2d6fba;
    --wheat-blue-dark: #20558f;
    --wheat-gold: #d9a441;
    --wheat-gold-light: #f3d486;
    --wheat-bg: #f7f8fa;
    --wheat-white: #ffffff;
    --wheat-text: #263342;
    --wheat-muted: #697586;
    width: 100%;
    overflow: hidden;
    color: var(--wheat-text);
    background: var(--wheat-bg);
}


.rs-wheat-container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.rs-wheat-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    background: linear-gradient( 115deg, #0b1628 0%, #162b47 55%, #203b5b 100% );
}


    .rs-wheat-hero::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -120px;
        top: -150px;
        border-radius: 50%;
        background: rgba(217,164,65,.09);
    }


.rs-wheat-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}


.rs-wheat-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}


    .rs-wheat-brand img {
        width: 40px;
        height: 40px;
        padding: 3px;
        object-fit: contain;
        background: #fff;
        border-radius: 8px;
    }


    .rs-wheat-brand span {
        color: #e5ebf2;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }


.rs-wheat-label {
    display: inline-flex;
    padding: 7px 12px;
    margin-bottom: 16px;
    color: var(--wheat-gold-light);
    border: 1px solid rgba(243,212,134,.35);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.rs-wheat-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 900;
    line-height: .95;
}


    .rs-wheat-hero h1 span {
        display: block;
        margin-top: 10px;
        color: var(--wheat-gold-light);
        font-size: .47em;
        font-weight: 700;
    }


.rs-wheat-hero-subtitle {
    margin: 19px 0 12px;
    color: #e2e8ef;
    font-size: 18px;
    font-weight: 700;
}


.rs-wheat-hero-description {
    max-width: 610px;
    margin: 0;
    color: #b9c6d5;
    font-size: 15px;
    line-height: 1.8;
}


.rs-wheat-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.rs-wheat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    padding: 0 18px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}


.rs-wheat-btn-primary {
    color: #162238 !important;
    background: var(--wheat-gold);
}


    .rs-wheat-btn-primary:hover {
        color: #162238 !important;
        background: var(--wheat-gold-light);
        transform: translateY(-2px);
    }


.rs-wheat-btn-outline {
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.35);
}


    .rs-wheat-btn-outline:hover {
        color: #ffffff !important;
        background: rgba(255,255,255,.08);
    }


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.rs-wheat-hero-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.rs-wheat-product-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,255,255,.12), transparent 68% );
}


.rs-wheat-product-card {
    position: relative;
    z-index: 2;
    width: min(390px, 100%);
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    backdrop-filter: blur(7px);
    box-shadow: 0 25px 60px rgba(0,0,0,.22);
}


.rs-wheat-product-badge {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 7px 11px;
    color: #182238;
    background: var(--wheat-gold-light);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
}


.rs-wheat-main-product-image {
    width: 100%;
    max-width: 310px;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow( 0 22px 28px rgba(0,0,0,.3) );
}


/* =========================================================
   LANGUAGE
   ========================================================= */

.rs-wheat-language-section {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #e8ebef;
}


.rs-wheat-language-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


    .rs-wheat-language-box > div:first-child {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }


    .rs-wheat-language-box span {
        color: var(--wheat-text);
        font-size: 15px;
        font-weight: 800;
    }


    .rs-wheat-language-box small {
        color: var(--wheat-muted);
        font-size: 11px;
    }


.rs-wheat-language-buttons {
    display: flex;
    padding: 3px;
    background: #f0f3f6;
    border-radius: 8px;
}


.rs-wheat-language {
    min-width: 85px;
    padding: 8px 13px;
    border: 0;
    background: transparent;
    color: #6d7784;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}


    .rs-wheat-language.active {
        color: #ffffff;
        background: var(--wheat-navy);
    }


/* =========================================================
   SECTION HEADING
   ========================================================= */

.rs-wheat-section-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}


    .rs-wheat-section-heading span {
        color: var(--wheat-blue);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.4px;
    }


    .rs-wheat-section-heading h2 {
        margin: 8px 0 9px;
        color: var(--wheat-navy);
        font-size: clamp(27px, 4vw, 38px);
        font-weight: 900;
        line-height: 1.15;
    }


    .rs-wheat-section-heading p {
        margin: 0;
        color: var(--wheat-muted);
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   OVERVIEW
   ========================================================= */

.rs-wheat-overview {
    padding: 80px 0;
    background: #ffffff;
}


.rs-wheat-overview-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 45px;
    align-items: stretch;
}


.rs-wheat-overview-content {
    padding: 31px;
    background: #f8f9fb;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
}


.rs-wheat-language-content {
    display: none;
}


    .rs-wheat-language-content.active {
        display: block;
    }


    .rs-wheat-language-content h3 {
        margin: 0 0 13px;
        color: var(--wheat-navy);
        font-size: 22px;
        font-weight: 850;
    }


    .rs-wheat-language-content p {
        margin: 0 0 13px;
        color: var(--wheat-muted);
        font-size: 14px;
        line-height: 1.85;
    }


        .rs-wheat-language-content p:last-child {
            margin-bottom: 0;
        }


.rs-wheat-overview-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    color: #ffffff;
    background: linear-gradient( 145deg, var(--wheat-navy), var(--wheat-navy-2) );
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(16,27,45,.14);
}


.rs-wheat-highlight-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--wheat-gold-light);
    background: rgba(217,164,65,.12);
    border: 1px solid rgba(217,164,65,.25);
    border-radius: 12px;
    font-size: 22px;
}


.rs-wheat-overview-highlight strong {
    margin-bottom: 17px;
    font-size: 22px;
}


.rs-wheat-overview-highlight > span {
    position: relative;
    padding: 9px 0 9px 20px;
    color: #c5d0dc;
    font-size: 13px;
}


    .rs-wheat-overview-highlight > span::before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--wheat-gold);
    }


/* =========================================================
   INFORMATION
   ========================================================= */

.rs-wheat-information {
    padding: 80px 0;
    background: #f6f8fa;
}


.rs-wheat-chart-wrapper {
    display: none;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e3e7ec;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(16,27,45,.05);
}


    .rs-wheat-chart-wrapper.active {
        display: block;
    }


.rs-wheat-chart {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}


    .rs-wheat-chart th {
        padding: 17px 20px;
        color: #ffffff;
        background: var(--wheat-navy);
        font-size: 13px;
        font-weight: 800;
        text-align: left;
    }


    .rs-wheat-chart td {
        padding: 16px 20px;
        color: var(--wheat-muted);
        border-bottom: 1px solid #edf0f3;
        font-size: 13px;
        line-height: 1.6;
    }


        .rs-wheat-chart td:first-child {
            width: 30%;
            color: var(--wheat-navy);
            font-weight: 800;
        }


    .rs-wheat-chart tr:last-child td {
        border-bottom: 0;
    }


    .rs-wheat-chart tbody tr:hover td {
        background: #fafbfd;
    }


/* =========================================================
   FEATURES
   ========================================================= */

.rs-wheat-features {
    padding: 80px 0;
    background: #ffffff;
}


.rs-wheat-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.rs-wheat-feature-card {
    padding: 27px 22px;
    background: #ffffff;
    border: 1px solid #e4e8ed;
    border-radius: 14px;
    transition: all .25s ease;
}


    .rs-wheat-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(45,111,186,.3);
        box-shadow: 0 15px 35px rgba(16,27,45,.08);
    }


.rs-wheat-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--wheat-blue);
    background: #edf5fc;
    border-radius: 11px;
}


.rs-wheat-feature-card h3 {
    margin: 0 0 9px;
    color: var(--wheat-navy);
    font-size: 17px;
    font-weight: 850;
}


.rs-wheat-feature-card p {
    margin: 0;
    color: var(--wheat-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   MANAGEMENT
   ========================================================= */

.rs-wheat-management {
    padding: 75px 0;
    background: #f6f8fa;
}


.rs-wheat-management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.rs-wheat-management-card {
    position: relative;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e5e9ee;
    border-radius: 14px;
}


.rs-wheat-management-number {
    margin-bottom: 14px;
    color: var(--wheat-gold);
    font-size: 28px;
    font-weight: 900;
}


.rs-wheat-management-card h3 {
    margin: 0 0 9px;
    color: var(--wheat-navy);
    font-size: 16px;
}


.rs-wheat-management-card p {
    margin: 0;
    color: var(--wheat-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COMPANY
   ========================================================= */

.rs-wheat-company {
    padding: 70px 0;
    background: #ffffff;
}


.rs-wheat-company-card {
    display: flex;
    align-items: center;
    gap: 27px;
    padding: 30px;
    background: linear-gradient( 135deg, #f7f9fc, #ffffff );
    border: 1px solid #e1e6ec;
    border-radius: 16px;
}


.rs-wheat-company-logo {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: grid;
    place-items: center;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e0e5eb;
    border-radius: 14px;
}


    .rs-wheat-company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.rs-wheat-company-card span {
    color: var(--wheat-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
}


.rs-wheat-company-card h2 {
    margin: 5px 0 8px;
    color: var(--wheat-navy);
    font-size: 26px;
}


.rs-wheat-company-card p {
    margin: 3px 0;
    color: var(--wheat-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CTA
   ========================================================= */

.rs-wheat-cta {
    padding: 50px 0;
    background: linear-gradient( 120deg, var(--wheat-navy), #1c385a );
}


.rs-wheat-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


    .rs-wheat-cta-content > div span {
        color: var(--wheat-gold-light);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.3px;
    }


    .rs-wheat-cta-content h2 {
        margin: 7px 0;
        color: #ffffff;
        font-size: 30px;
    }


    .rs-wheat-cta-content p {
        margin: 0;
        color: #b9c7d6;
        font-size: 13px;
    }


.rs-wheat-btn-white {
    flex: 0 0 auto;
    color: var(--wheat-navy) !important;
    background: #ffffff;
}


    .rs-wheat-btn-white:hover {
        color: var(--wheat-navy) !important;
        transform: translateY(-2px);
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rs-wheat-hero-grid {
        grid-template-columns: 1fr .8fr;
        gap: 35px;
    }


    .rs-wheat-feature-grid,
    .rs-wheat-management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .rs-wheat-container {
        width: calc(100% - 28px);
    }


    .rs-wheat-hero {
        min-height: auto;
        padding: 60px 0;
    }


    .rs-wheat-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .rs-wheat-hero-content {
        text-align: center;
    }


    .rs-wheat-brand {
        justify-content: center;
    }


    .rs-wheat-hero-buttons {
        justify-content: center;
    }


    .rs-wheat-hero-product {
        order: 2;
    }


    .rs-wheat-product-card {
        width: min(340px, 100%);
        min-height: 360px;
    }


    .rs-wheat-language-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }


    .rs-wheat-language-buttons {
        align-self: center;
    }


    .rs-wheat-overview,
    .rs-wheat-information,
    .rs-wheat-features {
        padding: 60px 0;
    }


    .rs-wheat-overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .rs-wheat-feature-grid,
    .rs-wheat-management-grid {
        grid-template-columns: 1fr 1fr;
    }


    .rs-wheat-company-card {
        align-items: flex-start;
    }


    .rs-wheat-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rs-wheat-container {
        width: calc(100% - 22px);
    }


    .rs-wheat-hero {
        padding: 48px 0;
    }


        .rs-wheat-hero h1 {
            font-size: 54px;
        }


    .rs-wheat-hero-description {
        font-size: 13px;
    }


    .rs-wheat-btn {
        width: 100%;
    }


    .rs-wheat-language-buttons {
        width: 100%;
    }


    .rs-wheat-language {
        flex: 1;
    }


    .rs-wheat-overview-content,
    .rs-wheat-overview-highlight {
        padding: 23px;
    }


    .rs-wheat-feature-grid,
    .rs-wheat-management-grid {
        grid-template-columns: 1fr;
    }


    .rs-wheat-feature-card {
        padding: 23px;
    }


    .rs-wheat-company-card {
        flex-direction: column;
        padding: 24px;
    }


    .rs-wheat-company-logo {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }


    .rs-wheat-company-card h2 {
        font-size: 23px;
    }


    .rs-wheat-cta-content h2 {
        font-size: 25px;
    }
}
