﻿/* ============================================================
   SAMRUDDHI AGRI TECH
   WHEAT PAGE - START / HERO SECTION
   ============================================================ */

.rds-wheat-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}


/* ============================================================
   HERO
   ============================================================ */

.rds-wheat-hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #6c521f;
}


/* ============================================================
   BACKGROUND IMAGE
   ============================================================ */

.rds-wheat-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('../images/wheat/wheat-field.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}


/* ============================================================
   IMAGE OVERLAY
   ============================================================ */

.rds-wheat-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 90deg, rgba(28, 35, 12, 0.88) 0%, rgba(45, 47, 18, 0.76) 38%, rgba(70, 54, 20, 0.45) 68%, rgba(28, 28, 10, 0.48) 100% );
}


/* ============================================================
   DECORATIVE GLOWS
   ============================================================ */

.rds-wheat-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(4px);
}

.rds-wheat-glow-one {
    width: 320px;
    height: 320px;
    top: -170px;
    right: 7%;
    background: rgba(255, 204, 70, 0.16);
}

.rds-wheat-glow-two {
    width: 250px;
    height: 250px;
    bottom: -150px;
    left: 5%;
    background: rgba(181, 221, 70, 0.13);
}


/* ============================================================
   CONTAINER
   ============================================================ */

.rds-wheat-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* ============================================================
   HERO GRID
   ============================================================ */

.rds-wheat-hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 70px;
    padding: 70px 0;
}


/* ============================================================
   LEFT CONTENT
   ============================================================ */

.rds-wheat-hero-content {
    max-width: 720px;
    color: #ffffff;
}


/* ============================================================
   EYEBROW
   ============================================================ */

.rds-wheat-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffe38a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


/* ============================================================
   TITLE
   ============================================================ */

.rds-wheat-title {
    margin: 23px 0 18px;
    font-size: clamp(45px, 5.3vw, 76px);
    line-height: 0.99;
    letter-spacing: -2.8px;
    font-weight: 850;
    color: #ffffff;
}


.rds-wheat-title-en,
.rds-wheat-title-mr {
    display: block;
}


/* ============================================================
   DESCRIPTION
   ============================================================ */

.rds-wheat-description {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.rds-wheat-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}


.rds-wheat-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 21px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}


    .rds-wheat-btn:hover {
        transform: translateY(-3px);
    }


.rds-wheat-btn-primary {
    color: #26300d;
    background: linear-gradient( 135deg, #e7f18b, #ffd66b );
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}


    .rds-wheat-btn-primary:hover {
        color: #26300d;
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
    }


.rds-wheat-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


    .rds-wheat-btn-secondary:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.18);
    }


.rds-wheat-arrow {
    font-size: 20px;
    line-height: 1;
}


/* ============================================================
   TRUST LINE
   ============================================================ */

.rds-wheat-trust {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
}


.rds-wheat-trust-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #33420e;
    background: #ddeb7a;
    font-size: 12px;
    font-weight: 900;
}


/* ============================================================
   RIGHT SIDE
   ============================================================ */

.rds-wheat-hero-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 410px;
}


/* ============================================================
   FOCUS CARD
   ============================================================ */

.rds-wheat-focus-card {
    position: relative;
    width: min(100%, 410px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 25px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08) );
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.27);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* ============================================================
   CARD TOP
   ============================================================ */

.rds-wheat-focus-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


.rds-wheat-focus-label-en,
.rds-wheat-focus-label-mr {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.7px;
}


.rds-wheat-focus-season {
    padding: 6px 10px;
    border-radius: 100px;
    color: #3a310b;
    background: #f6d96d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}


/* ============================================================
   CROP NAME
   ============================================================ */

.rds-wheat-crop-name {
    margin-top: 19px;
    color: #ffffff;
    font-size: 43px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -1.5px;
}


.rds-wheat-crop-en,
.rds-wheat-crop-mr {
    display: block;
}


/* ============================================================
   CARD LINE
   ============================================================ */

.rds-wheat-card-line {
    width: 100%;
    height: 1px;
    margin: 21px 0;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) );
}


/* ============================================================
   BENEFITS
   ============================================================ */

.rds-wheat-benefits {
    display: grid;
    gap: 13px;
}


.rds-wheat-benefit {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 54px;
    padding: 8px 11px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.075);
    transition: background 0.25s ease, transform 0.25s ease;
}


    .rds-wheat-benefit:hover {
        background: rgba(255, 255, 255, 0.13);
        transform: translateX(4px);
    }


.rds-wheat-benefit-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255, 224, 108, 0.17);
    font-size: 19px;
}


.rds-wheat-benefit strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.35;
}


/* ============================================================
   CARD BOTTOM
   ============================================================ */

.rds-wheat-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: #ffe99b;
    font-size: 12px;
    font-weight: 750;
}


.rds-wheat-bottom-arrow {
    margin-left: auto;
    font-size: 20px;
    animation: rdsWheatArrow 1.6s ease-in-out infinite;
}


@keyframes rdsWheatArrow {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* ============================================================
   QUALITY BADGE
   ============================================================ */

.rds-wheat-quality-badge {
    position: absolute;
    right: -34px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    background: rgba(31, 34, 11, 0.82);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
}


.rds-wheat-quality-star {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #58460d;
    background: #f6dc72;
    font-size: 16px;
}


.rds-wheat-quality-badge strong,
.rds-wheat-quality-badge small {
    display: block;
}


.rds-wheat-quality-badge strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
}


.rds-wheat-quality-badge small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
}


/* ============================================================
   SCROLL
   ============================================================ */

.rds-wheat-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.rds-wheat-scroll-line {
    position: relative;
    width: 32px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.32);
}


    .rds-wheat-scroll-line::after {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: #f4db73;
        animation: rdsWheatScroll 1.8s linear infinite;
    }


@keyframes rdsWheatScroll {

    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


/* ============================================================
   LANGUAGE
   ============================================================ */

.rds-wheat-mr {
    display: none;
}

.rds-wheat-en {
    display: inline;
}


/* Hide Marathi by default */
.rds-wheat-eyebrow-mr,
.rds-wheat-title-mr,
.rds-wheat-description-mr,
.rds-wheat-btn-mr,
.rds-wheat-trust-mr,
.rds-wheat-focus-label-mr,
.rds-wheat-crop-mr,
.rds-wheat-benefit-mr,
.rds-wheat-bottom-mr,
.rds-wheat-quality-mr,
.rds-wheat-quality-small-mr,
.rds-wheat-scroll-text-mr {
    display: none;
}


/* ============================================================
   MARATHI MODE
   ============================================================ */

body.rds-marathi-mode .rds-wheat-eyebrow-en,
body.rds-marathi-mode .rds-wheat-title-en,
body.rds-marathi-mode .rds-wheat-description-en,
body.rds-marathi-mode .rds-wheat-btn-en,
body.rds-marathi-mode .rds-wheat-trust-en,
body.rds-marathi-mode .rds-wheat-focus-label-en,
body.rds-marathi-mode .rds-wheat-crop-en,
body.rds-marathi-mode .rds-wheat-benefit-en,
body.rds-marathi-mode .rds-wheat-bottom-en,
body.rds-marathi-mode .rds-wheat-quality-en,
body.rds-marathi-mode .rds-wheat-quality-small-en,
body.rds-marathi-mode .rds-wheat-scroll-text-en {
    display: none;
}


body.rds-marathi-mode .rds-wheat-eyebrow-mr,
body.rds-marathi-mode .rds-wheat-title-mr,
body.rds-marathi-mode .rds-wheat-description-mr,
body.rds-marathi-mode .rds-wheat-btn-mr,
body.rds-marathi-mode .rds-wheat-trust-mr,
body.rds-marathi-mode .rds-wheat-focus-label-mr,
body.rds-marathi-mode .rds-wheat-crop-mr,
body.rds-marathi-mode .rds-wheat-benefit-mr,
body.rds-marathi-mode .rds-wheat-bottom-mr,
body.rds-marathi-mode .rds-wheat-quality-mr,
body.rds-marathi-mode .rds-wheat-quality-small-mr,
body.rds-marathi-mode .rds-wheat-scroll-text-mr {
    display: block;
}


/* ============================================================
   RESPONSIVE - 1050px
   ============================================================ */

@media (max-width: 1050px) {

    .rds-wheat-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
        gap: 42px;
    }

    .rds-wheat-quality-badge {
        right: -10px;
    }

    .rds-wheat-title {
        font-size: clamp(43px, 6vw, 66px);
    }
}


/* ============================================================
   RESPONSIVE - 820px
   ============================================================ */

@media (max-width: 820px) {

    .rds-wheat-hero {
        min-height: auto;
    }

    .rds-wheat-container {
        width: min(100% - 34px, 680px);
    }

    .rds-wheat-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 65px 0 80px;
    }

    .rds-wheat-hero-content {
        max-width: 680px;
    }

    .rds-wheat-hero-side {
        min-height: auto;
        padding-bottom: 10px;
    }

    .rds-wheat-focus-card {
        width: min(100%, 500px);
    }

    .rds-wheat-quality-badge {
        right: calc(50% - 250px);
        bottom: -5px;
    }

    .rds-wheat-scroll {
        display: none;
    }
}


/* ============================================================
   RESPONSIVE - 600px
   ============================================================ */

@media (max-width: 600px) {

    .rds-wheat-container {
        width: calc(100% - 28px);
    }

    .rds-wheat-hero-overlay {
        background: linear-gradient( 180deg, rgba(27, 32, 9, 0.88), rgba(46, 42, 15, 0.76) );
    }

    .rds-wheat-hero-grid {
        gap: 34px;
        padding: 50px 0 60px;
    }

    .rds-wheat-eyebrow {
        padding: 8px 13px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .rds-wheat-title {
        margin-top: 18px;
        margin-bottom: 15px;
        font-size: clamp(39px, 12vw, 57px);
        letter-spacing: -1.8px;
    }

    .rds-wheat-description {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .rds-wheat-actions {
        width: 100%;
    }

    .rds-wheat-btn {
        min-height: 49px;
        padding: 0 16px;
        font-size: 13px;
    }

    .rds-wheat-trust {
        align-items: flex-start;
        font-size: 10.5px;
        line-height: 1.45;
    }

    .rds-wheat-focus-card {
        padding: 22px 19px;
        border-radius: 20px;
    }

    .rds-wheat-crop-name {
        font-size: 37px;
    }

    .rds-wheat-quality-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        align-self: flex-end;
    }
}


/* ============================================================
   RESPONSIVE - 400px
   ============================================================ */

@media (max-width: 400px) {

    .rds-wheat-container {
        width: calc(100% - 20px);
    }

    .rds-wheat-hero-grid {
        padding: 40px 0 48px;
    }

    .rds-wheat-title {
        font-size: 37px;
        letter-spacing: -1.4px;
    }

    .rds-wheat-description {
        font-size: 14px;
    }

    .rds-wheat-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .rds-wheat-btn {
        width: 100%;
    }

    .rds-wheat-focus-card {
        padding: 19px 15px;
    }

    .rds-wheat-focus-top {
        align-items: flex-start;
    }

    .rds-wheat-crop-name {
        font-size: 33px;
    }

    .rds-wheat-benefit {
        padding: 7px 8px;
    }

    .rds-wheat-benefit-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .rds-wheat-benefit strong {
        font-size: 11.5px;
    }

    .rds-wheat-quality-badge {
        width: 100%;
    }
}


/* ============================================================
   VERY SMALL DEVICES - 340px
   ============================================================ */

@media (max-width: 340px) {

    .rds-wheat-container {
        width: calc(100% - 16px);
    }

    .rds-wheat-title {
        font-size: 33px;
    }

    .rds-wheat-eyebrow {
        font-size: 9px;
    }

    .rds-wheat-description {
        font-size: 13px;
    }

    .rds-wheat-focus-card {
        padding: 17px 12px;
    }

    .rds-wheat-crop-name {
        font-size: 30px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .rds-wheat-btn,
    .rds-wheat-benefit {
        transition: none;
    }

    .rds-wheat-bottom-arrow,
    .rds-wheat-scroll-line::after {
        animation: none;
    }
}
