﻿/* =========================================================
   RADHIKA SEEDS
   OTHER CROPS PAGE
   Paddy + Chana + Upcoming Crops

   ISOLATED CSS
   Will NOT affect other pages.
   ========================================================= */

.rs-other-page {
    --other-navy: #142b46;
    --other-navy-dark: #0b1d31;
    --other-red: #b85c42;
    --other-red-dark: #8f3f2e;
    --other-saffron: #d79a3d;
    --other-saffron-light: #efc77e;
    --other-bg: #f7f6f3;
    --other-white: #ffffff;
    --other-text: #29333b;
    --other-muted: #6b7378;
    width: 100%;
    overflow: hidden;
    color: var(--other-text);
    background: var(--other-bg);
}


.rs-other-container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.rs-other-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    background: linear-gradient( 120deg, #0b1d31 0%, #142b46 52%, #8f3f2e 100% );
}


    .rs-other-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -170px;
        top: -170px;
        border-radius: 50%;
        background: rgba(215,154,61,.10);
    }


.rs-other-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}


.rs-other-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}


    .rs-other-brand img {
        width: 40px;
        height: 40px;
        padding: 3px;
        object-fit: contain;
        background: #fff;
        border-radius: 8px;
    }


    .rs-other-brand span {
        color: #edf1f4;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }


.rs-other-label {
    display: inline-flex;
    padding: 7px 12px;
    margin-bottom: 17px;
    color: var(--other-saffron-light);
    border: 1px solid rgba(239,199,126,.35);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.rs-other-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(43px, 6vw, 72px);
    line-height: .98;
    font-weight: 900;
}


    .rs-other-hero h1 span {
        display: block;
        margin-top: 10px;
        color: var(--other-saffron-light);
        font-size: .40em;
        line-height: 1.2;
    }


.rs-other-hero-subtitle {
    margin: 19px 0 12px;
    color: #e1e8ed;
    font-size: 18px;
    font-weight: 700;
}


.rs-other-hero-description {
    max-width: 620px;
    margin: 0;
    color: #c6d0d8;
    font-size: 15px;
    line-height: 1.8;
}


.rs-other-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.rs-other-btn {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}


.rs-other-btn-primary {
    color: #3d2910 !important;
    background: var(--other-saffron);
}


    .rs-other-btn-primary:hover {
        color: #3d2910 !important;
        background: var(--other-saffron-light);
        transform: translateY(-2px);
    }


.rs-other-btn-outline {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.35);
}


    .rs-other-btn-outline:hover {
        color: #fff !important;
        background: rgba(255,255,255,.08);
    }


/* =========================================================
   HERO VISUAL
   ========================================================= */

.rs-other-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


.rs-other-visual-card {
    position: relative;
    width: min(380px,100%);
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    text-align: center;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
}


.rs-other-visual-top {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 20px;
    display: flex;
    justify-content: space-between;
    color: #e3eaf0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


    .rs-other-visual-top i {
        color: var(--other-saffron-light);
        font-size: 20px;
    }


.rs-other-crop-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}


    .rs-other-crop-icons div {
        width: 78px;
        height: 78px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        color: var(--other-saffron-light);
        background: rgba(215,154,61,.10);
        border: 1px solid rgba(215,154,61,.22);
        border-radius: 14px;
    }


    .rs-other-crop-icons i {
        font-size: 23px;
    }


    .rs-other-crop-icons small {
        color: #d6dfe5;
        font-size: 10px;
        font-weight: 700;
    }


.rs-other-visual-card strong {
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
}


.rs-other-visual-card p {
    margin: 15px 0 0;
    color: #c3cfd7;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.rs-other-section-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}


    .rs-other-section-heading span {
        color: var(--other-red);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.4px;
    }


    .rs-other-section-heading h2 {
        margin: 8px 0 9px;
        color: var(--other-navy-dark);
        font-size: clamp(27px,4vw,38px);
        font-weight: 900;
        line-height: 1.15;
    }


    .rs-other-section-heading p {
        margin: 0;
        color: var(--other-muted);
        font-size: 14px;
        line-height: 1.75;
    }


/* =========================================================
   INTRO / CROP CARDS
   ========================================================= */

.rs-other-intro {
    padding: 80px 0;
    background: #fff;
}


.rs-other-crop-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}


.rs-other-crop-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e4e3;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11,29,49,.05);
    transition: .25s ease;
}


    .rs-other-crop-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 38px rgba(11,29,49,.10);
    }


.rs-other-crop-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e7e2d9;
}


    .rs-other-crop-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }


.rs-other-crop-card:hover
.rs-other-crop-image img {
    transform: scale(1.04);
}


.rs-other-crop-image span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 7px 10px;
    color: #fff;
    background: rgba(11,29,49,.85);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}


.rs-other-crop-content {
    padding: 25px;
}


.rs-other-crop-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    color: var(--other-red);
    background: #f6ebe7;
    border-radius: 11px;
}


.rs-other-crop-content h3 {
    margin: 0 0 10px;
    color: var(--other-navy-dark);
    font-size: 22px;
    font-weight: 900;
}


    .rs-other-crop-content h3 small {
        display: block;
        margin-top: 3px;
        color: var(--other-red);
        font-size: 12px;
        font-weight: 700;
    }


.rs-other-crop-content p {
    margin: 0 0 15px;
    color: var(--other-muted);
    font-size: 13px;
    line-height: 1.75;
}


.rs-other-crop-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


.rs-other-crop-content li {
    position: relative;
    padding: 5px 0 5px 17px;
    color: #59636a;
    font-size: 12px;
}


    .rs-other-crop-content li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 11px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--other-saffron);
    }


/* =========================================================
   LANGUAGE INFORMATION
   ========================================================= */

.rs-other-information {
    padding: 80px 0;
    background: var(--other-bg);
}


.rs-other-language-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e0e3e2;
    border-radius: 10px;
}


    .rs-other-language-box div:first-child {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }


    .rs-other-language-box strong {
        color: var(--other-navy-dark);
        font-size: 14px;
    }


    .rs-other-language-box small {
        color: var(--other-muted);
        font-size: 11px;
    }


.rs-other-language-buttons {
    display: flex;
    padding: 3px;
    background: #f0f1ef;
    border-radius: 7px;
}


.rs-other-language {
    min-width: 85px;
    padding: 8px 12px;
    border: 0;
    border-radius: 5px;
    color: #70777b;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}


    .rs-other-language.active {
        color: #fff;
        background: var(--other-navy);
    }


.rs-other-table-wrapper {
    display: none;
    overflow-x: auto;
    background: #fff;
    border: 1px solid #dfe3e1;
    border-radius: 13px;
    box-shadow: 0 10px 25px rgba(11,29,49,.05);
}


    .rs-other-table-wrapper.active {
        display: block;
    }


.rs-other-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}


    .rs-other-table th {
        padding: 16px 18px;
        color: #fff;
        background: var(--other-navy);
        font-size: 12px;
        text-align: left;
    }


    .rs-other-table td {
        padding: 15px 18px;
        color: var(--other-muted);
        border-bottom: 1px solid #e9ebe9;
        font-size: 13px;
        line-height: 1.6;
    }


        .rs-other-table td:first-child {
            color: var(--other-red-dark);
            font-weight: 800;
        }


    .rs-other-table tr:last-child td {
        border-bottom: 0;
    }


/* =========================================================
   DETAIL SECTIONS
   ========================================================= */

.rs-other-detail {
    padding: 80px 0;
}


.rs-other-paddy {
    background: #fff;
}


.rs-other-chana {
    background: #f7f3ef;
}


.rs-other-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


    .rs-other-detail-grid.reverse {
        grid-template-columns: .9fr 1.1fr;
    }


.rs-other-detail-content > span {
    color: var(--other-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}


.rs-other-detail-content h2 {
    margin: 7px 0 15px;
    color: var(--other-navy-dark);
    font-size: 42px;
    font-weight: 900;
}


    .rs-other-detail-content h2 small {
        display: block;
        margin-top: 5px;
        color: var(--other-red);
        font-size: 16px;
        font-weight: 700;
    }


.rs-other-detail-content p {
    margin: 0 0 13px;
    color: var(--other-muted);
    font-size: 14px;
    line-height: 1.85;
}


.rs-other-detail-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}


    .rs-other-detail-points div {
        padding: 11px;
        color: var(--other-navy);
        background: #f4f1ec;
        border-radius: 7px;
        font-size: 11px;
        font-weight: 800;
    }


    .rs-other-detail-points i {
        margin-right: 6px;
        color: var(--other-red);
    }


.rs-other-detail-visual {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient( circle, #e9c987 0%, #d79a3d 28%, #142b46 75% );
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(11,29,49,.12);
}


    .rs-other-detail-visual > div {
        width: 190px;
        height: 190px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: rgba(11,29,49,.80);
        border: 1px solid rgba(255,255,255,.22);
        border-radius: 50%;
        text-align: center;
    }


    .rs-other-detail-visual i {
        margin-bottom: 12px;
        color: var(--other-saffron-light);
        font-size: 48px;
    }


    .rs-other-detail-visual strong {
        font-size: 25px;
    }


    .rs-other-detail-visual span {
        margin-top: 4px;
        color: #d9e0e4;
        font-size: 13px;
    }


/* =========================================================
   UPCOMING
   ========================================================= */

.rs-other-upcoming {
    padding: 80px 0;
    background: #fff;
}


.rs-other-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}


.rs-other-future-card {
    padding: 27px 22px;
    background: #faf8f5;
    border: 1px solid #e6e1d9;
    border-radius: 13px;
    transition: .25s ease;
}


    .rs-other-future-card:hover {
        transform: translateY(-5px);
        border-color: rgba(184,92,66,.35);
        box-shadow: 0 14px 30px rgba(11,29,49,.07);
    }


.rs-other-future-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--other-red);
    background: #f3e7e2;
    border-radius: 10px;
}


.rs-other-future-card h3 {
    margin: 0 0 9px;
    color: var(--other-navy-dark);
    font-size: 17px;
    font-weight: 850;
}


.rs-other-future-card p {
    margin: 0;
    color: var(--other-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COMPANY
   ========================================================= */

.rs-other-company {
    padding: 70px 0;
    background: var(--other-bg);
}


.rs-other-company-card {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e1e4e2;
    border-radius: 15px;
}


.rs-other-company-logo {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid #e1e4e2;
    border-radius: 13px;
}


    .rs-other-company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.rs-other-company-card span {
    color: var(--other-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
}


.rs-other-company-card h2 {
    margin: 5px 0 8px;
    color: var(--other-navy-dark);
    font-size: 27px;
}


.rs-other-company-card p {
    margin: 3px 0;
    color: var(--other-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CTA
   ========================================================= */

.rs-other-cta {
    padding: 52px 0;
    background: linear-gradient( 120deg, var(--other-navy-dark), var(--other-navy), var(--other-red-dark) );
}


.rs-other-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


    .rs-other-cta-content span {
        color: var(--other-saffron-light);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.2px;
    }


    .rs-other-cta-content h2 {
        margin: 7px 0;
        color: #fff;
        font-size: 30px;
    }


    .rs-other-cta-content p {
        margin: 0;
        color: #cbd4da;
        font-size: 13px;
    }


.rs-other-btn-white {
    flex: 0 0 auto;
    color: var(--other-navy) !important;
    background: #fff;
}


    .rs-other-btn-white:hover {
        color: var(--other-navy) !important;
        transform: translateY(-2px);
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rs-other-hero-grid {
        grid-template-columns: 1fr .85fr;
        gap: 35px;
    }


    .rs-other-crop-grid {
        grid-template-columns: 1fr 1fr;
    }


    .rs-other-crop-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }


    .rs-other-upcoming-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .rs-other-container {
        width: calc(100% - 28px);
    }


    .rs-other-hero {
        min-height: auto;
        padding: 60px 0;
    }


    .rs-other-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .rs-other-hero-content {
        text-align: center;
    }


    .rs-other-brand {
        justify-content: center;
    }


    .rs-other-hero-buttons {
        justify-content: center;
    }


    .rs-other-hero-visual {
        order: 2;
    }


    .rs-other-crop-grid {
        grid-template-columns: 1fr;
    }


    .rs-other-crop-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }


    .rs-other-language-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }


    .rs-other-language-buttons {
        align-self: center;
    }


    .rs-other-detail {
        padding: 60px 0;
    }


    .rs-other-detail-grid,
    .rs-other-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }


        .rs-other-detail-grid.reverse
        .rs-other-detail-content {
            order: 1;
        }


        .rs-other-detail-grid.reverse
        .rs-other-detail-visual {
            order: 2;
        }


    .rs-other-upcoming-grid {
        grid-template-columns: 1fr 1fr;
    }


    .rs-other-company-card {
        align-items: flex-start;
    }


    .rs-other-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rs-other-container {
        width: calc(100% - 22px);
    }


    .rs-other-hero {
        padding: 48px 0;
    }


        .rs-other-hero h1 {
            font-size: 51px;
        }


    .rs-other-hero-description {
        font-size: 13px;
    }


    .rs-other-btn {
        width: 100%;
    }


    .rs-other-visual-card {
        min-height: 330px;
        padding: 25px;
    }


    .rs-other-crop-icons {
        gap: 8px;
    }


        .rs-other-crop-icons div {
            width: 70px;
            height: 70px;
        }


    .rs-other-language-buttons {
        width: 100%;
    }


    .rs-other-language {
        flex: 1;
    }


    .rs-other-detail-content h2 {
        font-size: 34px;
    }


    .rs-other-detail-points {
        grid-template-columns: 1fr;
    }


    .rs-other-detail-visual {
        min-height: 280px;
    }


    .rs-other-upcoming-grid {
        grid-template-columns: 1fr;
    }


    .rs-other-company-card {
        flex-direction: column;
        padding: 24px;
    }


    .rs-other-company-logo {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }


    .rs-other-company-card h2 {
        font-size: 23px;
    }


    .rs-other-cta-content h2 {
        font-size: 25px;
    }
}
