﻿/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f0f4f0;
    color: #1a2e1a;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* ============================================================
   HERO SECTION – Non-Sticky
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: #1a3a1a;
    background-image: linear-gradient(145deg, rgba(10, 30, 10, 0.75) 0%, rgba(20, 50, 20, 0.60) 100%), radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 60%), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 2px, transparent 2px, transparent 8px), url('/Content/Images/SoyaDemo.jpg');
    background-blend-mode: overlay, overlay, normal, normal;
    background-size: cover, cover, auto, cover;
    background-position: center, center, center, center;
    box-shadow: 0 4px 20px rgba(0, 20, 0, 0.2);
    display: flex;
    align-items: center;
    border-bottom: 3px solid rgba(255, 215, 0, 0.12);
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    padding: 1.8rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.25rem 1.5rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #f5edd6;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 0.4rem;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 235, 0.9);
    font-weight: 400;
    margin-top: 0.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-varieties-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.6rem;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 240, 0.15);
}

    .hero-varieties-tag span {
        background: rgba(255, 255, 245, 0.1);
        padding: 0.15rem 0.9rem;
        border-radius: 40px;
        font-size: 0.65rem;
        font-weight: 500;
        color: #f0ecdb;
        border: 1px solid rgba(255, 255, 200, 0.1);
        backdrop-filter: blur(4px);
    }

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 0.5rem 0 0.1rem;
    flex-wrap: wrap;
}

.lang-btn {
    background: white;
    border: 2px solid #2b5e2b;
    color: #2b5e2b;
    padding: 0.25rem 0.9rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s ease;
    letter-spacing: 0.3px;
}

    .lang-btn.active {
        background: #2b5e2b;
        color: white;
        border-color: #2b5e2b;
        box-shadow: 0 4px 12px rgba(43, 94, 43, 0.25);
    }

    .lang-btn i {
        margin-right: 5px;
    }

/* ============================================================
   PRODUCT CARD – FULL COVER IMAGE (No Gaps)
   ============================================================ */
.product-section {
    padding: 1.2rem 0 0.5rem;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 20, 0, 0.07);
    border: 1px solid #e4efe4;
    height: 380px;
    transition: box-shadow 0.3s ease;
}

    .product-card:hover {
        box-shadow: 0 12px 36px rgba(30, 70, 30, 0.10);
    }

/* Left Side – Content */
.product-content-left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fafffa 0%, #f4faf4 100%);
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

    .product-content-left .product-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a3a1a;
        line-height: 1.2;
    }

        .product-content-left .product-title i {
            color: #3d7a3d;
            margin-right: 8px;
        }

    .product-content-left .product-description {
        font-size: 0.85rem;
        color: #3a5a3a;
        line-height: 1.5;
    }

        .product-content-left .product-description i {
            color: #2b5e2b;
            margin-right: 5px;
        }

.mini-varieties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

    .mini-varieties .variety-pill {
        background: linear-gradient(135deg, #ebf5eb, #d4e8d4);
        padding: 0.15rem 0.7rem;
        border-radius: 40px;
        font-size: 0.6rem;
        font-weight: 600;
        color: #1a3a1a;
        border: 1px solid #c0dcc0;
        transition: 0.2s ease;
        cursor: default;
    }

        .mini-varieties .variety-pill:hover {
            background: #2b5e2b;
            color: white;
            border-color: #2b5e2b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(43, 94, 43, 0.2);
        }

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
}

    .product-features .feature-item {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        color: #2a4a2a;
    }

        .product-features .feature-item i {
            color: #3d7a3d;
            font-size: 0.8rem;
        }

/* ============================================================
   RIGHT SIDE – FULL COVER IMAGE (COMPLETE FILL)
   ============================================================ */
.product-image-right {
    position: relative;
    background: linear-gradient(135deg, #0f2a0f, #1a3a1a, #2d5a2d);
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    flex: 1;
}

    .product-image-right .product-img-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .product-image-right .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.6s ease;
        }

        .product-image-right .product-img-wrapper:hover img {
            transform: scale(1.05);
        }

/* Badge Overlay on Image */
.product-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.92);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #1f3f1f;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 10;
    letter-spacing: 0.3px;
}

    .product-image-badge i {
        color: #f5b342;
        font-size: 0.65rem;
    }

/* Gradient Overlay for better text visibility */
.product-image-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.30), transparent);
    pointer-events: none;
    z-index: 5;
}

.product-image-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 5;
}

/* ============================================================
   DARK COLORFUL CHART – CULTIVATION DETAILS
   ============================================================ */
.details-section {
    padding: 0.5rem 0 1.5rem;
}

.details-chart-wrapper {
    background: linear-gradient(145deg, #0f1f0f, #1a3a1a, #0f1f0f);
    border-radius: 24px;
    padding: 1.5rem 1.8rem 1.2rem;
    box-shadow: 0 12px 40px rgba(0, 20, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.08);
    position: relative;
    overflow: hidden;
}

    .details-chart-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03), transparent 70%);
        pointer-events: none;
    }

    .details-chart-wrapper::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(46, 204, 113, 0.04), transparent 70%);
        pointer-events: none;
    }

.details-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 0.3rem;
}

    .details-chart-header .chart-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #f5edd6;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

        .details-chart-header .chart-title i {
            color: #f5c542;
        }

    .details-chart-header .chart-subtitle {
        font-size: 0.7rem;
        color: rgba(255, 215, 0, 0.5);
        font-weight: 400;
        letter-spacing: 0.5px;
    }

.detail-chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.2rem;
    position: relative;
    z-index: 2;
}

.detail-chart-item {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

    .detail-chart-item:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 215, 0, 0.08);
        transform: translateX(3px);
    }

    .detail-chart-item .chart-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
        color: #f5c542;
        background: rgba(255, 215, 0, 0.06);
        border-right: 1px solid rgba(255, 215, 0, 0.05);
    }

    .detail-chart-item .chart-content {
        padding: 0.4rem 0.8rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .detail-chart-item .chart-label {
        font-size: 0.55rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: rgba(255, 215, 0, 0.5);
        margin-bottom: 0.05rem;
    }

    .detail-chart-item .chart-value {
        font-size: 0.8rem;
        font-weight: 500;
        color: #e8f0e8;
        line-height: 1.3;
    }

    /* Color accents */
    .detail-chart-item:nth-child(1) .chart-icon {
        background: rgba(46, 204, 113, 0.12);
        color: #2ecc71;
        border-color: rgba(46, 204, 113, 0.08);
    }

    .detail-chart-item:nth-child(2) .chart-icon {
        background: rgba(52, 152, 219, 0.12);
        color: #3498db;
        border-color: rgba(52, 152, 219, 0.08);
    }

    .detail-chart-item:nth-child(3) .chart-icon {
        background: rgba(155, 89, 182, 0.12);
        color: #9b59b6;
        border-color: rgba(155, 89, 182, 0.08);
    }

    .detail-chart-item:nth-child(4) .chart-icon {
        background: rgba(241, 196, 15, 0.12);
        color: #f1c40f;
        border-color: rgba(241, 196, 15, 0.08);
    }

    .detail-chart-item:nth-child(5) .chart-icon {
        background: rgba(231, 76, 60, 0.12);
        color: #e74c3c;
        border-color: rgba(231, 76, 60, 0.08);
    }

    .detail-chart-item:nth-child(6) .chart-icon {
        background: rgba(26, 188, 156, 0.12);
        color: #1abc9c;
        border-color: rgba(26, 188, 156, 0.08);
    }

    .detail-chart-item:nth-child(7) .chart-icon {
        background: rgba(243, 156, 18, 0.12);
        color: #f39c12;
        border-color: rgba(243, 156, 18, 0.08);
    }

    .detail-chart-item:nth-child(8) .chart-icon {
        background: rgba(192, 57, 43, 0.12);
        color: #c0392b;
        border-color: rgba(192, 57, 43, 0.08);
    }

    .detail-chart-item:nth-child(9) .chart-icon {
        background: rgba(39, 174, 96, 0.12);
        color: #27ae60;
        border-color: rgba(39, 174, 96, 0.08);
    }

    .detail-chart-item:nth-child(10) .chart-icon {
        background: rgba(142, 68, 173, 0.12);
        color: #8e44ad;
        border-color: rgba(142, 68, 173, 0.08);
    }

.details-chart-footer {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

    .details-chart-footer i {
        color: rgba(255, 215, 0, 0.3);
    }

/* ============================================================
   VARIETY CARDS
   ============================================================ */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 1.8rem 0 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    color: #1a3a1a;
}

    .section-title i {
        color: #3d7a3d;
        font-size: 1.4rem;
    }

.title-underline {
    height: 4px;
    width: 45px;
    background: linear-gradient(90deg, #3d7a3d, #b0d0b0);
    border-radius: 4px;
}

.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin: 0.8rem 0 1.5rem;
}

.variety-card {
    background: white;
    border-radius: 20px;
    padding: 0.8rem 0.3rem 0.6rem;
    box-shadow: 0 4px 16px rgba(0, 20, 0, 0.05);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #eaf0ea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
}

    .variety-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(45, 90, 45, 0.10);
        border-color: #b8d9b8;
    }

    .variety-card i {
        font-size: 1.6rem;
        color: #3d7a3d;
        background: #ebf5eb;
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 60px;
        margin-bottom: 0.3rem;
    }

    .variety-card .vname {
        font-weight: 700;
        font-size: 0.85rem;
        color: #143014;
    }

    .variety-card .vsub {
        font-size: 0.55rem;
        color: #4d6b4d;
        background: #f0f7f0;
        padding: 0.1rem 0.6rem;
        border-radius: 30px;
        margin-top: 2px;
    }

/* ============================================================
   SPECIAL NOTE
   ============================================================ */
.special-note {
    background: #eaf3ea;
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    margin: 1.2rem 0;
    border-left: 5px solid #2b5e2b;
}

    .special-note p {
        font-weight: 500;
        font-size: 0.9rem;
    }

/* ============================================================
   UTILITY
   ============================================================ */
.lang-hi.hide,
.lang-en.hide {
    display: none;
}

/* ============================================================
   RESPONSIVE – Fully Mobile Responsive
   ============================================================ */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .product-card {
        height: 340px;
    }

    .product-image-right {
        min-height: 340px;
    }

    .product-content-left {
        padding: 1.2rem 1.5rem;
    }

        .product-content-left .product-title {
            font-size: 1.3rem;
        }
}

@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
        height: auto;
        border-radius: 20px;
    }

    .product-content-left {
        padding: 1.5rem 1.8rem;
        height: auto;
        order: 2;
        gap: 0.5rem;
    }

    .product-image-right {
        height: 300px;
        min-height: 300px;
        order: 1;
    }

        .product-image-right .product-img-wrapper {
            height: 100%;
        }

            .product-image-right .product-img-wrapper img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }

    .detail-chart-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .details-chart-wrapper {
        padding: 1.2rem 1rem;
    }

    .hero-section {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-varieties-tag span {
        font-size: 0.5rem;
        padding: 0.1rem 0.6rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.2rem 1.2rem;
    }

    .hero-overlay {
        padding: 1.2rem 0;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-content-left {
        padding: 1rem 1.2rem;
    }

        .product-content-left .product-title {
            font-size: 1.2rem;
        }

        .product-content-left .product-description {
            font-size: 0.8rem;
        }

    .product-image-right {
        height: 250px;
        min-height: 250px;
    }

        .product-image-right .product-img-wrapper img {
            object-fit: cover;
        }

    .product-image-badge {
        top: 0.6rem;
        right: 0.6rem;
        font-size: 0.5rem;
        padding: 0.15rem 0.7rem;
    }

    .details-chart-wrapper {
        padding: 0.9rem 0.8rem;
        border-radius: 18px;
    }

    .detail-chart-item .chart-value {
        font-size: 0.75rem;
    }

    .detail-chart-item .chart-label {
        font-size: 0.5rem;
    }

    .detail-chart-item .chart-icon {
        min-width: 34px;
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .variety-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .lang-toggle {
        justify-content: center;
    }

    .mini-varieties .variety-pill {
        font-size: 0.55rem;
        padding: 0.12rem 0.6rem;
    }

    .product-features .feature-item {
        font-size: 0.65rem;
    }

    .details-chart-header .chart-title {
        font-size: 1rem;
    }

    .details-chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 170px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 0.8rem;
    }

    .hero-varieties-tag {
        gap: 0.2rem 0.3rem;
    }

        .hero-varieties-tag span {
            font-size: 0.45rem;
            padding: 0.08rem 0.5rem;
        }

    .hero-badge {
        font-size: 0.5rem;
        padding: 0.12rem 0.8rem;
    }

    .hero-overlay {
        padding: 0.8rem 0;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-content-left {
        padding: 0.8rem 0.8rem;
        gap: 0.3rem;
    }

        .product-content-left .product-title {
            font-size: 1rem;
        }

        .product-content-left .product-description {
            font-size: 0.7rem;
        }

    .product-image-right {
        height: 200px;
        min-height: 200px;
    }

        .product-image-right .product-img-wrapper img {
            object-fit: cover;
        }

    .product-image-badge {
        font-size: 0.4rem;
        padding: 0.1rem 0.5rem;
        top: 0.4rem;
        right: 0.4rem;
        gap: 0.2rem;
    }

        .product-image-badge i {
            font-size: 0.5rem;
        }

    .details-chart-wrapper {
        padding: 0.6rem 0.5rem;
        border-radius: 16px;
    }

    .detail-chart-item .chart-content {
        padding: 0.3rem 0.5rem;
    }

    .detail-chart-item .chart-value {
        font-size: 0.68rem;
    }

    .detail-chart-item .chart-label {
        font-size: 0.45rem;
    }

    .detail-chart-item .chart-icon {
        min-width: 28px;
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .details-chart-footer {
        font-size: 0.55rem;
    }

    .variety-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .variety-card {
        padding: 0.6rem 0.2rem 0.5rem;
        border-radius: 16px;
    }

        .variety-card i {
            width: 38px;
            height: 38px;
            font-size: 1.3rem;
        }

        .variety-card .vname {
            font-size: 0.7rem;
        }

        .variety-card .vsub {
            font-size: 0.5rem;
            padding: 0.08rem 0.5rem;
        }

    .special-note {
        padding: 0.6rem 0.8rem;
        border-radius: 16px;
    }

        .special-note p {
            font-size: 0.75rem;
        }

    .section-title {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem;
    }

        .section-title i {
            font-size: 1.1rem;
        }

    .title-underline {
        width: 30px;
        height: 3px;
    }

    .lang-btn {
        font-size: 0.65rem;
        padding: 0.2rem 0.7rem;
    }
}
