* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================================================
   FIXED RESPONSIVE HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 12px 0;
    background: rgba(247, 251, 241, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(7, 91, 42, 0.08);
}

.navbar-box {
    width: 100%;
    min-height: 82px;
    padding: 10px 14px 10px 18px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,252,245,0.96)),
        radial-gradient(circle at top left, rgba(228,220,37,0.28), transparent 36%),
        radial-gradient(circle at bottom right, rgba(17,146,69,0.12), transparent 35%);
    border: 1px solid rgba(17, 146, 69, 0.12);
    box-shadow: 0 18px 44px rgba(7, 91, 42, 0.12);
}

/* Brand */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 390px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.brand-emblem {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 14px 28px rgba(17, 146, 69, 0.28);
    position: relative;
    overflow: hidden;
}

.brand-emblem::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    right: -10px;
    top: -10px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.38);
}

.brand-emblem i {
    position: relative;
    z-index: 1;
    font-size: 25px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
    min-width: 0;
}

.brand-text strong {
    font-family: "Oswald", sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: #075b2a;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    white-space: nowrap;
}

.brand-text small {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #657260;
    letter-spacing: 0.01em;
}

/* Desktop Menu */
.navbar-nav {
    gap: 3px;
}

.navbar .nav-link {
    position: relative;
    padding: 12px 10px !important;
    color: #172217;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #075b2a;
    background: rgba(17, 146, 69, 0.08);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 22px;
    height: 3px;
    border-radius: 30px;
    background: #119245;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-icon {
    display: none;
}

/* Customer Care Box */
.header-call-wrap {
    margin-left: 8px;
}

.header-call-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 158px;
    padding: 9px 12px;
    border-radius: 18px;
    background: rgba(7, 91, 42, 0.08);
    border: 1px solid rgba(7, 91, 42, 0.12);
    transition: all 0.25s ease;
}

.header-call-card:hover {
    background: #075b2a;
    transform: translateY(-2px);
}

.header-call-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #075b2a;
    color: #fff;
}

.header-call-card:hover .header-call-icon {
    background: #e4dc25;
    color: #172217;
}

.header-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-call-text small {
    color: #657260;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.header-call-text strong {
    color: #075b2a;
    font-size: 14px;
    font-weight: 900;
}

.header-call-card:hover small,
.header-call-card:hover strong {
    color: #fff;
}

/* Enquiry Button */
.header-btn-wrap {
    margin-left: 4px;
}

.header-enquiry-btn {
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 16px 32px rgba(17, 146, 69, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.header-enquiry-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(17, 146, 69, 0.34);
}

/* Mobile Header Actions */
.header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-mobile-call {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 12px 24px rgba(17, 146, 69, 0.24);
}

.header-mobile-call:hover {
    color: #fff;
}

.custom-toggler {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: rgba(7, 91, 42, 0.09);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: none !important;
}

.custom-toggler span {
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background: #075b2a;
    transition: all 0.25s ease;
}

.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Large Desktop Fine Tune */
@media (min-width: 1400px) and (max-width: 1599px) {
    .brand-logo {
        max-width: 345px;
    }

    .brand-text strong {
        font-size: 24px;
    }

    .brand-text small {
        font-size: 11px;
    }

    .navbar .nav-link {
        font-size: 12px;
        padding: 11px 8px !important;
    }

    .header-call-card {
        min-width: 145px;
        padding: 8px 10px;
    }

    .header-enquiry-btn {
        padding: 11px 16px;
        font-size: 12px;
    }
}

/* Collapse Layout */
@media (max-width: 1399px) {
    .site-header {
        padding: 10px 0;
    }

    .navbar-box {
        min-height: 76px;
        border-radius: 22px;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(7, 91, 42, 0.1);
    }

    .navbar-nav {
        gap: 8px;
        padding-top: 4px;
    }

    .navbar .nav-link {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 13px 15px !important;
        border-radius: 16px;
        background: rgba(7, 91, 42, 0.045);
        font-size: 13px;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .nav-icon {
        display: inline-flex;
        width: 34px;
        height: 34px;
        min-width: 34px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: #075b2a;
        background: rgba(17, 146, 69, 0.11);
    }

    .header-btn-wrap {
        margin-left: 0;
    }

    .header-enquiry-btn {
        width: 100%;
        min-height: 52px;
        margin-top: 4px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .brand-logo {
        max-width: calc(100% - 108px);
        gap: 10px;
    }

    .brand-emblem {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 16px;
    }

    .brand-emblem i {
        font-size: 21px;
    }

    .brand-text strong {
        font-size: 19px;
        white-space: normal;
        line-height: 1.05;
    }

    .brand-text small {
        display: none;
    }

    .navbar-box {
        padding: 9px 10px;
        border-radius: 20px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .brand-text strong {
        font-size: 17px;
    }

    .brand-emblem {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .header-mobile-call,
    .custom-toggler {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }
}


/* =====================================================
   HERO SLIDER CENTER TEXT + RESPONSIVE FIX
===================================================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

/* Main hero slide */
.hero-slide {
    position: relative;
    min-height: calc(100vh - 120px);
    height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark premium overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(3, 40, 18, 0.72) 0%,
            rgba(3, 55, 24, 0.72) 45%,
            rgba(2, 31, 13, 0.82) 100%
        ),
        radial-gradient(
            circle at center,
            rgba(228, 220, 37, 0.16),
            transparent 45%
        );
}

/* Optional texture glow */
.hero-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 560px;
    height: 560px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.08);
    filter: blur(35px);
    pointer-events: none;
}

/* Row full height and center */
.hero-row {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 120px);
    height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 15px;
    text-align: center;
}

/* Badge center */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 22px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #e4dc25;
    color: #172217;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

/* Hero title */
.hero-title {
    max-width: 960px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 94px);
    line-height: 0.98;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.hero-title span {
    color: #e4dc25;
}

/* Hero paragraph */
.hero-text {
    max-width: 820px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.85;
    text-align: center;
}

/* Center buttons */
.hero-content .d-flex {
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn-brand,
.btn-outline-light-brand {
    min-height: 52px;
    padding: 14px 27px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.035em;
}

.btn-brand {
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    border: 0;
    box-shadow: 0 18px 38px rgba(17, 146, 69, 0.35);
}

.btn-brand:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-light-brand {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.btn-outline-light-brand:hover {
    color: #075b2a;
    background: #ffffff;
}

/* Center points */
.hero-points {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-points i {
    color: #e4dc25;
}

/* Indicators center */
.hero-carousel .carousel-indicators {
    bottom: 34px;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    opacity: 1;
}

.hero-carousel .carousel-indicators .active {
    width: 58px;
    background: #e4dc25;
}

/* Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 54px;
    height: 54px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    margin: 0 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    opacity: 1;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(228, 220, 37, 0.85);
}

/* Large screen refinement */
@media (min-width: 1400px) {
    .hero-slide,
    .hero-row {
        height: 860px;
    }

    .hero-content {
        max-width: 1040px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-slide,
    .hero-row {
        min-height: 720px;
        height: auto;
    }

    .hero-content {
        max-width: 760px;
        padding: 90px 18px 105px;
    }

    .hero-title {
        font-size: clamp(40px, 8vw, 68px);
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-slide {
        min-height: 660px;
        background-position: center center;
    }

    .hero-row {
        min-height: 660px;
    }

    .hero-content {
        padding: 82px 14px 100px;
    }

    .hero-badge {
        font-size: 11px;
        line-height: 1.4;
        padding: 9px 14px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .hero-text {
        max-width: 95%;
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .hero-content .d-flex {
        width: 100%;
        gap: 12px !important;
    }

    .btn-brand,
    .btn-outline-light-brand {
        width: 100%;
        min-height: 50px;
        padding: 13px 18px;
        font-size: 14px;
    }

    .hero-points {
        gap: 9px;
        margin-top: 22px;
    }

    .hero-points span {
        width: 100%;
        max-width: 310px;
        min-height: 40px;
        font-size: 12px;
    }

    .hero-carousel .carousel-indicators {
        bottom: 24px;
    }

    .hero-carousel .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 4px;
    }

    .hero-carousel .carousel-indicators .active {
        width: 44px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .hero-slide,
    .hero-row {
        min-height: 620px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 10px;
    }
}


/* =====================================================
   PREMIUM TRUST STRIP - DESKTOP + MOBILE RESPONSIVE
===================================================== */

.trust-premium-strip {
    position: relative;
    z-index: 10;
    margin-top: -64px;
    padding-bottom: 24px;
}

.trust-premium-box {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 26px 70px rgba(7, 91, 42, 0.16);
}

/* Left green card */
.trust-intro-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 38px 34px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(5, 61, 26, 0.96), rgba(17, 146, 69, 0.93)),
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.34), transparent 36%);
    overflow: hidden;
}

.trust-intro-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.20);
}

.trust-intro-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    left: -40px;
    top: -40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.trust-kicker {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #172217;
    background: #e4dc25;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-intro-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(31px, 3vw, 46px);
    line-height: 1.08;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.trust-intro-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.85;
}

.trust-intro-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.trust-intro-stats div {
    padding: 16px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.trust-intro-stats strong {
    display: block;
    color: #e4dc25;
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
}

.trust-intro-stats span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Right feature grid */
.trust-feature-grid {
    height: 100%;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    background:
        linear-gradient(135deg, #ffffff, #f7fbf1),
        radial-gradient(circle at bottom right, rgba(17, 146, 69, 0.10), transparent 34%);
}

.trust-feature-card {
    position: relative;
    min-height: 148px;
    padding: 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 14px 34px rgba(7, 91, 42, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 17px;
    transition: all 0.28s ease;
}

.trust-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(17, 146, 69, 0.22);
    box-shadow: 0 22px 48px rgba(7, 91, 42, 0.14);
}

.trust-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 14px 28px rgba(17, 146, 69, 0.24);
}

.trust-feature-icon i {
    font-size: 23px;
}

.trust-feature-content h5 {
    margin: 0 0 8px;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.trust-feature-content p {
    margin: 0;
    color: #657260;
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 991px) {
    .trust-premium-strip {
        margin-top: -38px;
    }

    .trust-premium-box {
        border-radius: 28px;
    }

    .trust-intro-card {
        min-height: auto;
        padding: 32px 28px;
        text-align: center;
    }

    .trust-intro-card p {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-intro-stats {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-feature-grid {
        padding: 16px;
    }

    .trust-feature-card {
        min-height: 155px;
        padding: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .trust-premium-strip {
        margin-top: -26px;
        padding-bottom: 10px;
    }

    .trust-premium-box {
        border-radius: 24px;
    }

    .trust-intro-card {
        padding: 26px 18px 24px;
    }

    .trust-kicker {
        font-size: 10px;
        padding: 8px 12px;
        margin-bottom: 14px;
    }

    .trust-intro-card h2 {
        font-size: 28px;
        line-height: 1.14;
    }

    .trust-intro-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .trust-intro-stats {
        gap: 10px;
        margin-top: 20px;
    }

    .trust-intro-stats div {
        padding: 14px 10px;
        border-radius: 16px;
    }

    .trust-intro-stats strong {
        font-size: 28px;
    }

    .trust-intro-stats span {
        font-size: 10.5px;
    }

    .trust-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .trust-feature-card {
        min-height: 190px;
        padding: 16px 12px;
        border-radius: 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .trust-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 17px;
    }

    .trust-feature-icon i {
        font-size: 20px;
    }

    .trust-feature-content h5 {
        font-size: 17px;
        margin-bottom: 7px;
    }

    .trust-feature-content p {
        font-size: 11.5px;
        line-height: 1.48;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .trust-feature-card {
        min-height: 180px;
        padding: 15px 9px;
    }

    .trust-feature-content h5 {
        font-size: 15.5px;
    }

    .trust-feature-content p {
        font-size: 11px;
    }
}

/* Very narrow phones */
@media (max-width: 340px) {
    .trust-feature-grid {
        grid-template-columns: 1fr;
    }

    .trust-feature-card {
        min-height: auto;
    }
}


/* =====================================================
   FIXED PREMIUM SEED PRODUCT SLIDER SECTION
   Paste this at the bottom of CSS file
===================================================== */

.seed-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at top left, rgba(228, 220, 37, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(17, 146, 69, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

/* Header */
.seed-showcase-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 24px;
}

.seed-head-left {
    max-width: 860px;
}

.seed-showcase-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.10);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.seed-showcase-section .section-tag i {
    color: #119245;
}

.seed-showcase-section .section-title {
    margin: 0 0 14px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seed-showcase-section .section-title span {
    color: #119245;
}

.seed-showcase-section .section-text {
    max-width: 900px;
    margin: 0;
    color: #61705c;
    font-size: 15px;
    line-height: 1.8;
}

.seed-head-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.seed-mini-stat {
    min-width: 145px;
    padding: 15px 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 14px 34px rgba(7, 91, 42, 0.09);
    text-align: center;
}

.seed-mini-stat strong {
    display: block;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    line-height: 1;
}

.seed-mini-stat span {
    display: block;
    margin-top: 5px;
    color: #657260;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Category Pills */
.seed-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.seed-category-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #075b2a;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 10px 26px rgba(7, 91, 42, 0.07);
    font-size: 15px;
    font-weight: 800;
}

.seed-category-pills i {
    color: #119245;
}

/* Main Slider Box */
.seed-slider-shell {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 245, 0.98)),
        radial-gradient(circle at top left, rgba(228, 220, 37, 0.20), transparent 34%),
        radial-gradient(circle at bottom right, rgba(17, 146, 69, 0.12), transparent 34%);
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 26px 70px rgba(7, 91, 42, 0.14);
}

/* Top Bar */
.seed-slider-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 4px 4px 20px;
}

.seed-slider-top h3 {
    margin: 0 0 4px;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.seed-slider-top p {
    margin: 0;
    color: #657260;
    font-size: 14px;
}

.seed-slider-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.seed-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 14px 30px rgba(17, 146, 69, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.seed-arrow:hover {
    color: #172217;
    background: #e4dc25;
    transform: translateY(-3px);
}

.seed-view-all {
    min-height: 48px;
    padding: 13px 17px;
    border-radius: 18px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.seed-view-all:hover {
    color: #ffffff;
    background: #075b2a;
}

/* Slider Window */
.seed-slider-window {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 5px 0 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.seed-slider-window::-webkit-scrollbar {
    display: none;
}

/* Track */
.seed-slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 22px;
    width: max-content;
    transform: none !important;
    transition: none !important;
}

/* Card */
.seed-card {
    flex: 0 0 292px !important;
    width: 292px !important;
    min-width: 292px !important;
    max-width: 292px !important;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 18px 42px rgba(7, 91, 42, 0.11);
    transition: all 0.28s ease;
}

.seed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(7, 91, 42, 0.18);
}

.seed-card-img {
    position: relative;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #edf7e8;
}

.seed-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.seed-card:hover .seed-card-img img {
    transform: scale(1.08);
}

.seed-card-no {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 44px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: #172217;
    background: #e4dc25;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.seed-card-body {
    padding: 20px;
}

.seed-card-category {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.10);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seed-card-body h5 {
    min-height: 58px;
    margin: 0 0 10px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: 21px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.seed-card-body p {
    min-height: 72px;
    margin: 0 0 14px;
    color: #657260;
    font-size: 13.5px;
    line-height: 1.65;
}

.seed-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.seed-card-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #075b2a;
    background: #f0f7eb;
    border: 1px solid rgba(7, 91, 42, 0.08);
    font-size: 13px;
    font-weight: 800;
}

/* Tablet */
@media (max-width: 991px) {
    .seed-showcase-section {
        padding: 76px 0;
    }

    .seed-showcase-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seed-head-right {
        width: 100%;
        justify-content: space-between;
    }

    .seed-slider-shell {
        padding: 16px;
        border-radius: 28px;
    }

    .seed-slider-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .seed-slider-actions {
        width: 100%;
    }

    .seed-view-all {
        margin-left: auto;
    }

    .seed-card {
        flex-basis: 270px !important;
        width: 270px !important;
        min-width: 270px !important;
        max-width: 270px !important;
    }

    .seed-card-img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .seed-showcase-section {
        padding: 68px 0;
    }

    .seed-head-right {
        flex-direction: column;
        align-items: stretch;
    }

    .seed-mini-stat,
    .seed-head-right .btn {
        width: 100%;
    }

    .seed-category-pills {
        gap: 8px;
        margin-bottom: 20px;
    }

    .seed-category-pills span {
        width: calc(50% - 4px);
        padding: 9px 7px;
        font-size: 11px;
    }

    .seed-slider-shell {
        padding: 12px;
        border-radius: 24px;
    }

    .seed-slider-top h3 {
        font-size: 25px;
    }

    .seed-slider-top p {
        font-size: 13px;
    }

    .seed-slider-actions {
        width: 100%;
        gap: 8px;
    }

    .seed-arrow {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .seed-view-all {
        flex: 1;
        justify-content: center;
        min-height: 44px;
        border-radius: 15px;
    }

    .seed-slider-window {
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .seed-slider-window::-webkit-scrollbar {
        display: block;
        height: 5px;
    }

    .seed-slider-window::-webkit-scrollbar-track {
        background: #edf7e8;
        border-radius: 999px;
    }

    .seed-slider-window::-webkit-scrollbar-thumb {
        background: #119245;
        border-radius: 999px;
    }

    .seed-slider-track {
        gap: 14px;
    }

    .seed-card {
        flex-basis: 250px !important;
        width: 250px !important;
        min-width: 250px !important;
        max-width: 250px !important;
        border-radius: 22px;
        scroll-snap-align: start;
    }

    .seed-card-img {
        height: 190px;
    }

    .seed-card-body {
        padding: 16px;
    }

    .seed-card-body h5 {
        min-height: 52px;
        font-size: 18px;
    }

    .seed-card-body p {
        min-height: 68px;
        font-size: 12.5px;
        line-height: 1.55;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .seed-card {
        flex-basis: 236px !important;
        width: 236px !important;
        min-width: 236px !important;
        max-width: 236px !important;
    }

    .seed-card-img {
        height: 178px;
    }

    .seed-category-pills span {
        font-size: 10.5px;
    }
}






/* =====================================================
   PREMIUM PRODUCT CATALOGUE SECTION
===================================================== */

.product-catalogue-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.16), transparent 33%),
        radial-gradient(circle at 100% 14%, rgba(17, 146, 69, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

.product-catalogue-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -190px;
    top: 120px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.10);
    pointer-events: none;
}

.product-catalogue-section::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    left: -150px;
    bottom: 80px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.16);
    pointer-events: none;
}

.product-catalogue-section .container {
    position: relative;
    z-index: 2;
}

.product-catalogue-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.product-head-content {
    max-width: 860px;
}

.product-catalogue-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.10);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-catalogue-section .section-tag i {
    color: #119245;
}

.product-catalogue-section .section-title {
    margin: 0 0 15px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.product-catalogue-section .section-title span {
    color: #119245;
}

.product-catalogue-section .section-text {
    max-width: 920px;
    margin: 0;
    color: #61705c;
    font-size: 15px;
    line-height: 1.85;
}

.product-head-action {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.product-count-box {
    min-width: 145px;
    padding: 15px 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 14px 34px rgba(7, 91, 42, 0.09);
    text-align: center;
}

.product-count-box strong {
    display: block;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    line-height: 1;
}

.product-count-box span {
    display: block;
    margin-top: 5px;
    color: #657260;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.product-category-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #075b2a;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 10px 26px rgba(7, 91, 42, 0.07);
    font-size: 13px;
    font-weight: 800;
}

.product-category-row i {
    color: #119245;
}

.product-grid-row {
    align-items: stretch;
}

/* Card */
.product-card-premium {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 18px 42px rgba(7, 91, 42, 0.10);
    transition: all 0.28s ease;
}

.product-card-premium:hover {
    transform: translateY(-9px);
    border-color: rgba(17, 146, 69, 0.24);
    box-shadow: 0 30px 65px rgba(7, 91, 42, 0.18);
}

.product-card-premium .product-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #edf7e8;
}

.product-card-premium .product-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card-premium:hover .product-img img {
    transform: scale(1.08);
}

.product-card-premium .product-number {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 44px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: #172217;
    background: #e4dc25;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.product-card-premium .product-type {
    position: absolute;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(7, 91, 42, 0.92);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card-premium .product-body {
    padding: 21px;
}

.product-card-premium .product-body h4 {
    min-height: 58px;
    margin: 0 0 11px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.product-card-premium .product-body p {
    min-height: 84px;
    margin: 0 0 15px;
    color: #657260;
    font-size: 13.5px;
    line-height: 1.68;
}

.product-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 17px;
}

.product-feature-list span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #075b2a;
    background: #f0f7eb;
    border: 1px solid rgba(7, 91, 42, 0.08);
    font-size: 13px;
    font-weight: 800;
}

.product-enquiry-link {
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.product-enquiry-link i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    background: #075b2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.product-enquiry-link:hover {
    color: #ffffff;
    background: #075b2a;
}

.product-enquiry-link:hover i {
    color: #172217;
    background: #e4dc25;
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991px) {
    .product-catalogue-section {
        padding: 76px 0;
    }

    .product-catalogue-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .product-head-action {
        width: 100%;
        justify-content: space-between;
    }

    .product-card-premium .product-img {
        height: 235px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .product-catalogue-section {
        padding: 68px 0;
    }

    .product-head-action {
        flex-direction: column;
        align-items: stretch;
    }

    .product-count-box,
    .product-head-action .btn {
        width: 100%;
    }

    .product-category-row {
        gap: 8px;
        margin-bottom: 26px;
    }

    .product-category-row span {
        width: calc(50% - 4px);
        padding: 9px 7px;
        font-size: 11px;
        text-align: center;
    }

    .product-card-premium {
        border-radius: 24px;
    }

    .product-card-premium .product-img {
        height: 230px;
    }

    .product-card-premium .product-body {
        padding: 18px;
    }

    .product-card-premium .product-body h4 {
        min-height: auto;
        font-size: 20px;
    }

    .product-card-premium .product-body p {
        min-height: auto;
        font-size: 13px;
    }

    .product-enquiry-link {
        min-height: 44px;
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .product-category-row span {
        width: 100%;
    }

    .product-card-premium .product-img {
        height: 210px;
    }

    .product-card-premium .product-body h4 {
        font-size: 18px;
    }
}


/* =====================================================
   ABOUT STORY SECTION WITH READ MORE
===================================================== */

.about-story-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.15), transparent 32%),
        radial-gradient(circle at 100% 20%, rgba(17, 146, 69, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

.about-story-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -210px;
    bottom: 80px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.10);
    pointer-events: none;
}

.about-story-section .container {
    position: relative;
    z-index: 2;
}

/* Image Area */
.about-story-media {
    position: relative;
    padding: 22px 26px 28px 0;
}

.about-story-media::before {
    content: "";
    position: absolute;
    inset: 58px 0 0 48px;
    border-radius: 36px;
    background: linear-gradient(135deg, #9fb332, #e4dc25);
}

.about-story-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.18);
}

/* Floating Since Card */
.about-float-card {
    position: absolute;
    z-index: 3;
    right: -4px;
    bottom: 28px;
    width: 210px;
    padding: 24px;
    border-radius: 26px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(5, 61, 26, 0.96), rgba(17, 146, 69, 0.94));
    box-shadow: 0 24px 50px rgba(7, 91, 42, 0.28);
}

.about-float-card span {
    display: block;
    color: #e4dc25;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-float-card h3 {
    margin: 4px 0 6px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 56px;
    line-height: 1;
}

.about-float-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.6;
}

/* Founder Small Card */
.about-founder-card {
    position: absolute;
    z-index: 3;
    left: 28px;
    top: 46px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 18px 40px rgba(7, 91, 42, 0.14);
    backdrop-filter: blur(8px);
}

.about-founder-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    color: #ffffff;
    background: #075b2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-founder-card strong {
    display: block;
    color: #075b2a;
    font-size: 14px;
    font-weight: 900;
}

.about-founder-card span {
    display: block;
    color: #657260;
    font-size: 11px;
    font-weight: 700;
}

/* Content */
.about-story-content {
    position: relative;
}

.story-highlight-box {
    display: flex;
    gap: 18px;
    padding: 24px;
    margin-top: 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 18px 42px rgba(7, 91, 42, 0.10);
}

.story-highlight-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(17, 146, 69, 0.25);
}

.story-highlight-icon i {
    font-size: 26px;
}

.story-highlight-box h4 {
    margin: 0 0 8px;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
}

.story-highlight-box p {
    margin: 0;
    color: #657260;
    font-size: 14px;
    line-height: 1.75;
}

/* Timeline */
.about-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.about-timeline-card {
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 14px 34px rgba(7, 91, 42, 0.08);
}

.about-timeline-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #172217;
    background: #e4dc25;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.about-timeline-card h5 {
    margin: 0 0 8px;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 21px;
    text-transform: uppercase;
}

.about-timeline-card p {
    margin: 0;
    color: #657260;
    font-size: 13px;
    line-height: 1.65;
}

/* Read More Content */
.about-more-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.75s ease, opacity 0.45s ease, margin-top 0.45s ease;
}

.about-more-content.show {
    max-height: 3000px;
    opacity: 1;
    margin-top: 20px;
}

.premium-story-card {
    padding: 26px;
    margin-bottom: 16px;
    border-radius: 28px;
    background: #ffffff;
    border-left: 5px solid #119245;
    box-shadow: 0 18px 42px rgba(7, 91, 42, 0.10);
}

.premium-story-card h5 {
    margin: 0 0 14px;
    color: #075b2a;
    font-family: "Oswald", sans-serif;
    font-size: 27px;
    text-transform: uppercase;
}

.premium-story-card p {
    margin: 0 0 14px;
    color: #657260;
    font-size: 14px;
    line-height: 1.85;
}

.premium-story-card p:last-child {
    margin-bottom: 0;
}

/* Founder Message */
.founder-message-box {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 22px 50px rgba(7, 91, 42, 0.20);
}

.founder-message-box > i {
    color: #e4dc25;
    font-size: 34px;
    margin-bottom: 14px;
}

.founder-message-box p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 16px;
    line-height: 1.8;
}

.founder-message-box strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.founder-message-box span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

/* Button */
.about-read-btn {
    margin-top: 22px;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(17, 146, 69, 0.28);
    transition: all 0.25s ease;
}

.about-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(17, 146, 69, 0.36);
}

.about-read-btn i {
    transition: transform 0.25s ease;
}

.about-read-btn.active i {
    transform: rotate(180deg);
}

/* Tablet */
@media (max-width: 991px) {
    .about-story-media {
        max-width: 620px;
        margin: 0 auto;
    }

    .about-story-media img {
        height: 520px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-story-media {
        padding: 0;
    }

    .about-story-media::before {
        display: none;
    }

    .about-story-media img {
        height: 390px;
        border-radius: 28px;
    }

    .about-float-card {
        position: static;
        width: 100%;
        margin-top: 14px;
        border-radius: 22px;
    }

    .about-founder-card {
        left: 16px;
        top: 16px;
        max-width: calc(100% - 32px);
    }

    .story-highlight-box {
        flex-direction: column;
        padding: 22px;
    }

    .about-timeline-grid {
        grid-template-columns: 1fr;
    }

    .premium-story-card {
        padding: 22px;
    }

    .founder-message-box {
        padding: 24px;
    }

    .about-read-btn {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .about-story-media img {
        height: 330px;
    }

    .about-founder-card {
        padding: 12px;
    }

    .story-highlight-box h4 {
        font-size: 22px;
    }

    .about-timeline-card {
        padding: 18px;
    }

    .premium-story-card h5 {
        font-size: 23px;
    }
}



/* =====================================================
   COMPACT RESPONSIVE CATEGORY SECTION WITH MOBILE SLIDER
===================================================== */

.category-premium-section {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.14), transparent 32%),
        radial-gradient(circle at 100% 20%, rgba(17, 146, 69, 0.10), transparent 34%),
        linear-gradient(180deg, #f7fbf1 0%, #ffffff 100%);
}

.category-premium-section::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -160px;
    top: 120px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.10);
    pointer-events: none;
}

.category-premium-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.category-premium-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.category-head-content {
    max-width: 860px;
}

.category-premium-section .section-text {
    max-width: 920px;
}

/* Mobile controls hidden on desktop */
.category-mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
}

.category-arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    box-shadow: 0 14px 30px rgba(17, 146, 69, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.category-arrow:hover {
    color: #172217;
    background: #e4dc25;
    transform: translateY(-3px);
}

.category-arrow:active {
    transform: translateY(0);
}

/* Slider Window */
.category-slider-window {
    width: 100%;
}

/* Desktop cards */
.category-card-premium {
    position: relative;
    height: 100%;
    min-height: 338px;
    padding: 24px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfef7 100%);
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 16px 38px rgba(7, 91, 42, 0.09);
    transition: all 0.28s ease;
}

.category-card-premium::before {
    content: "";
    position: absolute;
    width: 132px;
    height: 132px;
    right: -56px;
    top: -56px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.22);
    transition: all 0.28s ease;
}

.category-card-premium::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, #075b2a, #119245, #e4dc25);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.category-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(17, 146, 69, 0.24);
    box-shadow: 0 28px 58px rgba(7, 91, 42, 0.16);
}

.category-card-premium:hover::before {
    width: 180px;
    height: 180px;
    background: rgba(228, 220, 37, 0.30);
}

.category-card-premium:hover::after {
    transform: scaleX(1);
}

.category-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: rgba(7, 91, 42, 0.08);
    font-family: "Oswald", sans-serif;
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    z-index: 1;
}

.category-card-premium .category-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(17, 146, 69, 0.25);
    transition: all 0.28s ease;
}

.category-card-premium:hover .category-icon {
    color: #172217;
    background: #e4dc25;
    transform: rotate(-5deg) scale(1.05);
}

.category-card-premium .category-icon i {
    font-size: 24px;
}

.category-card-body {
    position: relative;
    z-index: 2;
}

.category-label {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.10);
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-card-premium h4 {
    margin: 0 0 8px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.category-card-premium p {
    margin: 0 0 14px;
    color: #657260;
    font-size: 13.5px;
    line-height: 1.65;
}

.category-card-premium ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.category-card-premium li {
    display: flex;
    gap: 9px;
    margin-bottom: 8px;
    color: #5f6c59;
    font-size: 13px;
    line-height: 1.55;
}

.category-card-premium li:last-child {
    margin-bottom: 0;
}

.category-card-premium li i {
    margin-top: 4px;
    color: #119245;
    font-size: 12px;
}

.category-link {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.category-link i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #ffffff;
    background: #075b2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.category-link:hover {
    color: #ffffff;
    background: #075b2a;
}

.category-link:hover i {
    color: #172217;
    background: #e4dc25;
    transform: translateX(3px);
}

.category-mobile-hint {
    display: none;
}

/* Tablet */
@media (max-width: 991px) {
    .category-premium-section {
        padding: 74px 0;
    }

    .category-premium-head {
        align-items: flex-start;
    }

    .category-card-premium {
        min-height: 330px;
        padding: 22px;
    }
}

/* Mobile slider */
@media (max-width: 767px) {
    .category-premium-section {
        padding: 66px 0;
    }

    .category-premium-head {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 20px;
    }

    .category-mobile-controls {
        display: flex;
        justify-content: flex-end;
    }

    .category-slider-window {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding: 4px 0 14px;
        scrollbar-width: thin;
    }

    .category-slider-window::-webkit-scrollbar {
        height: 5px;
    }

    .category-slider-window::-webkit-scrollbar-track {
        background: #edf7e8;
        border-radius: 999px;
    }

    .category-slider-window::-webkit-scrollbar-thumb {
        background: #119245;
        border-radius: 999px;
    }

    .category-slider-track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        margin-left: 0;
        margin-right: 0;
        gap: 14px;
    }

    .category-slide-item {
        flex: 0 0 282px;
        width: 282px;
        max-width: 282px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        scroll-snap-align: start;
    }

    .category-card-premium {
        min-height: 360px;
        padding: 20px;
        border-radius: 24px;
    }

    .category-card-premium h4 {
        font-size: 22px;
    }

    .category-card-premium p {
        font-size: 13px;
    }

    .category-card-premium li {
        font-size: 12.5px;
    }

    .category-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        color: #657260;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .category-mobile-hint i {
        color: #119245;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .category-slide-item {
        flex-basis: 260px;
        width: 260px;
        max-width: 260px;
    }

    .category-card-premium {
        min-height: 370px;
        padding: 18px;
    }

    .category-card-premium h4 {
        font-size: 20px;
    }

    .category-card-premium p {
        font-size: 12.5px;
    }
}


/* =========================
   QUALITY SECTION V2
========================= */
.quality-section-v2 {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(rgba(7, 45, 20, 0.78), rgba(4, 26, 12, 0.82)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=85') center center / cover no-repeat;
    overflow: hidden;
}

.quality-section-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.14), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 28%);
    pointer-events: none;
}

.quality-section-v2 .container {
    position: relative;
    z-index: 2;
}

.quality-overlay-box {
    padding: 38px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.quality-content-v2 {
    color: #fff;
}

.quality-tag-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f0da21;
    color: #16341a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.quality-title-v2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.quality-title-v2 span {
    display: block;
    color: #f0da21;
}

.quality-text-v2 {
    color: rgba(255, 255, 255, 0.90);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 760px;
}

.quality-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quality-card-v2 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.3s ease;
}

.quality-card-v2:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(240, 218, 33, 0.4);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.quality-icon-v2 {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: #f0da21;
    color: #0c5c2b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.quality-card-v2:hover .quality-icon-v2 {
    background: #0d7a36;
    color: #fff;
}

.quality-card-content h5 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
}

.quality-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

/* Right panel */
.quality-side-panel-v2 {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quality-side-top span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #edf5ee;
    color: #0c5c2b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 22px;
}

.quality-side-top i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0d7a36;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quality-stat-v2 {
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0a6c30, #063c1b);
    color: #fff;
    margin-bottom: 22px;
}

.quality-stat-v2 small {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f0da21;
    color: #17341c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.quality-stat-v2 h3 {
    margin: 0 0 8px;
    font-size: 62px;
    line-height: 1;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
}

.quality-stat-v2 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    font-size: 14px;
}

.quality-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.quality-list-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #26422a;
    font-size: 14px;
    line-height: 1.6;
}

.quality-list-item-v2 i {
    margin-top: 3px;
    color: #0d7a36;
    font-size: 16px;
}

.quality-btn-v2 {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .quality-section-v2 {
        padding: 80px 0;
    }

    .quality-overlay-box {
        padding: 24px;
    }

    .quality-side-panel-v2 {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .quality-section-v2 {
        padding: 68px 0;
        background:
            linear-gradient(rgba(7, 45, 20, 0.86), rgba(4, 26, 12, 0.88)),
            url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=85') center center / cover no-repeat;
    }

    .quality-overlay-box {
        padding: 18px;
        border-radius: 24px;
    }

    .quality-title-v2 {
        font-size: 34px;
    }

    .quality-text-v2 {
        font-size: 14px;
        line-height: 1.8;
    }

    .quality-grid-v2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quality-card-v2 {
        padding: 18px;
        border-radius: 18px;
    }

    .quality-card-content h5 {
        font-size: 18px;
    }

    .quality-side-panel-v2 {
        padding: 20px;
        border-radius: 22px;
    }

    .quality-stat-v2 h3 {
        font-size: 46px;
    }
}

@media (max-width: 480px) {
    .quality-card-v2 {
        flex-direction: column;
    }

    .quality-icon-v2 {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        font-size: 20px;
    }

    .quality-title-v2 {
        font-size: 30px;
    }
}



/* =====================================================
   PREMIUM CONTACT SECTION
===================================================== */

.contact-premium-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.16), transparent 32%),
        radial-gradient(circle at 100% 15%, rgba(17, 146, 69, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf1 100%);
}

.contact-premium-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    top: 110px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.10);
    pointer-events: none;
}

.contact-premium-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -170px;
    bottom: 60px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.16);
    pointer-events: none;
}

.contact-premium-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.contact-premium-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.contact-head-content {
    max-width: 880px;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #075b2a;
    background: rgba(17, 146, 69, 0.10);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-tag i {
    color: #119245;
}

.contact-title {
    margin: 0 0 14px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.06;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.contact-title span {
    color: #119245;
}

.contact-text {
    max-width: 920px;
    margin: 0;
    color: #61705c;
    font-size: 15px;
    line-height: 1.85;
}

.contact-head-badge {
    min-width: 260px;
    padding: 16px 18px;
    border-radius: 24px;
    background: #075b2a;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 18px 40px rgba(7, 91, 42, 0.20);
}

.contact-head-badge i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    color: #172217;
    background: #e4dc25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-head-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-head-badge span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
}

/* Main Box */
.contact-premium-box {
    padding: 22px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.10);
    box-shadow: 0 26px 70px rgba(7, 91, 42, 0.14);
}

/* Left Panel */
.contact-info-panel,
.contact-form-panel {
    height: 100%;
    border-radius: 30px;
}

.contact-info-panel {
    position: relative;
    overflow: hidden;
    padding: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.22), transparent 34%),
        linear-gradient(135deg, #053d1c 0%, #075b2a 48%, #119245 100%);
}

.contact-info-panel::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.16);
    pointer-events: none;
}

.contact-panel-title {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
}

.contact-panel-title span,
.contact-form-head span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #172217;
    background: #e4dc25;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-panel-title h3,
.contact-form-head h3 {
    margin: 0 0 8px;
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-panel-title h3 {
    color: #ffffff;
}

.contact-panel-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

/* Contact Info Items */
.contact-info-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
}

.contact-info-item {
    padding: 16px;
    border-radius: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: all 0.28s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(228, 220, 37, 0.34);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    color: #172217;
    background: #e4dc25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
}

.contact-info-item:hover .contact-info-icon {
    color: #ffffff;
    background: #119245;
    transform: rotate(-5deg) scale(1.04);
}

.contact-info-item h6 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
    line-height: 1.65;
}

.contact-info-item a:hover {
    color: #e4dc25;
}

/* Buttons */
.contact-action-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.contact-action-btn {
    min-height: 46px;
    border-radius: 999px;
    color: #172217;
    background: #e4dc25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.contact-action-btn:hover {
    color: #075b2a;
    background: #ffffff;
    transform: translateY(-3px);
}

.contact-action-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-action-light:hover {
    color: #172217;
    background: #ffffff;
}

/* Trust Strip */
.contact-trust-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.contact-trust-strip div {
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-trust-strip strong {
    display: block;
    color: #e4dc25;
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.contact-trust-strip span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Form Panel */
.contact-form-panel {
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fcf3 100%);
    border: 1px solid rgba(7, 91, 42, 0.10);
}

.contact-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-form-head h3 {
    color: #075b2a;
}

.contact-form-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(17, 146, 69, 0.24);
}

.contact-label {
    display: block;
    margin-bottom: 7px;
    color: #075b2a;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-field {
    position: relative;
}

.contact-field > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #119245;
    font-size: 14px;
    z-index: 2;
}

.contact-textarea-field > i {
    top: 18px;
    transform: none;
}

.seed-enquiry-form .form-control,
.seed-enquiry-form .form-select {
    min-height: 52px;
    padding: 13px 16px 13px 44px;
    border-radius: 16px;
    color: #172217;
    background-color: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.13);
    box-shadow: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.seed-enquiry-form textarea.form-control {
    min-height: 128px;
    resize: none;
}

.seed-enquiry-form .form-control:focus,
.seed-enquiry-form .form-select:focus {
    border-color: #119245;
    box-shadow: 0 0 0 4px rgba(17, 146, 69, 0.12);
}

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
}

.contact-form-bottom p {
    margin: 0;
    max-width: 430px;
    color: #657260;
    font-size: 13px;
    line-height: 1.65;
}

.contact-form-bottom p i {
    color: #119245;
    margin-right: 6px;
}

.contact-submit-btn {
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(17, 146, 69, 0.26);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.contact-submit-btn:hover {
    color: #172217;
    background: #e4dc25;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-premium-section {
        padding: 76px 0;
    }

    .contact-premium-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-head-badge {
        width: 100%;
    }

    .contact-premium-box {
        padding: 16px;
        border-radius: 30px;
    }
}

@media (max-width: 767px) {
    .contact-premium-section {
        padding: 66px 0;
    }

    .contact-premium-box {
        padding: 12px;
        border-radius: 24px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .contact-panel-title h3,
    .contact-form-head h3 {
        font-size: 27px;
    }

    .contact-form-head {
        align-items: center;
    }

    .contact-form-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 16px;
    }

    .contact-action-row,
    .contact-trust-strip {
        grid-template-columns: 1fr;
    }

    .contact-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .contact-info-item {
        flex-direction: column;
    }

    .contact-title {
        font-size: 32px;
    }

    .seed-enquiry-form .form-control,
    .seed-enquiry-form .form-select {
        min-height: 50px;
        font-size: 13px;
    }
}


/* =====================================================
   PREMIUM RESPONSIVE FOOTER
===================================================== */

.footer-premium {
    position: relative;
    overflow: hidden;
    padding: 78px 0 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 0% 0%, rgba(228, 220, 37, 0.18), transparent 32%),
        radial-gradient(circle at 100% 18%, rgba(17, 146, 69, 0.24), transparent 34%),
        linear-gradient(135deg, #031f0e 0%, #06401d 48%, #075b2a 100%);
}

.footer-premium::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -190px;
    top: -180px;
    border-radius: 50%;
    background: rgba(228, 220, 37, 0.14);
    pointer-events: none;
}

.footer-premium::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -180px;
    bottom: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.footer-premium .container {
    position: relative;
    z-index: 2;
}

/* Main box */
.footer-main-box {
    padding: 34px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

/* Brand */
.footer-brand-area {
    height: 100%;
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 250px;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.footer-logo-wrap img {
    max-width: 205px;
    width: 100%;
    height: auto;
    display: block;
}

.footer-brand-text {
    max-width: 410px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.8;
}

/* Stats */
.footer-info-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 360px;
    margin-bottom: 20px;
}

.footer-info-strip div {
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info-strip strong {
    display: block;
    color: #e4dc25;
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.footer-info-strip span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Social */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: #172217;
    background: #e4dc25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    color: #075b2a;
    background: #ffffff;
    transform: translateY(-4px);
}

/* Widgets */
.footer-widget h5 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 12px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-widget h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: #e4dc25;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 10px;
}

.footer-link-list li:last-child {
    margin-bottom: 0;
}

.footer-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer-link-list a i {
    color: #e4dc25;
    font-size: 12px;
    transition: all 0.25s ease;
}

.footer-link-list a:hover {
    color: #e4dc25;
    transform: translateX(5px);
}

.footer-link-list a:hover i {
    color: #ffffff;
}

.footer-product-list a {
    font-size: 13.5px;
}

/* Contact list */
.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-item {
    padding: 14px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: all 0.25s ease;
}

.footer-contact-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(228, 220, 37, 0.30);
}

.footer-contact-item > span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    color: #172217;
    background: #e4dc25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-contact-item:hover > span {
    color: #ffffff;
    background: #119245;
    transform: rotate(-5deg) scale(1.05);
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.55;
}

/* CTA */
.footer-cta-box {
    margin-top: 22px;
    padding: 24px 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.18), transparent 34%),
        linear-gradient(135deg, #e4dc25 0%, #f2eb55 100%);
    color: #172217;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.footer-cta-box span {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: #075b2a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta-box h4 {
    margin: 0;
    max-width: 760px;
    color: #172217;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-cta-btn {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #075b2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.footer-cta-btn:hover {
    color: #172217;
    background: #ffffff;
    transform: translateY(-3px);
}

.footer-cta-btn-light {
    color: #075b2a;
    background: #ffffff;
}

.footer-cta-btn-light:hover {
    color: #ffffff;
    background: #075b2a;
}

/* Bottom */
.footer-bottom {
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom-links a {
    color: #e4dc25;
    font-weight: 900;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e4dc25;
}

/* Responsive */
@media (max-width: 1199px) {
    .footer-main-box {
        padding: 28px;
    }

    .footer-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-actions {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .footer-premium {
        padding-top: 66px;
    }

    .footer-logo-wrap {
        max-width: 230px;
    }

    .footer-brand-text {
        max-width: 100%;
    }

    .footer-info-strip {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-main-box {
        padding: 22px;
        border-radius: 28px;
    }

    .footer-logo-wrap {
        max-width: 220px;
        padding: 12px 15px;
        border-radius: 20px;
    }

    .footer-logo-wrap img {
        max-width: 180px;
    }

    .footer-widget h5 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .footer-cta-box {
        padding: 22px;
        border-radius: 24px;
    }

    .footer-cta-box h4 {
        font-size: 23px;
    }

    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 420px) {
    .footer-main-box {
        padding: 18px;
    }

    .footer-info-strip {
        grid-template-columns: 1fr;
    }

    .footer-contact-item {
        flex-direction: column;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }
}



/* =====================================================
   PRODUCTION RESPONSIVE PATCH
   Keep this at the bottom of assets/style.css
===================================================== */

:root {
    --dark-green: #075b2a;
    --green: #119245;
    --yellow: #e4dc25;
    --cream: #f7fbf1;
    --text-dark: #172217;
    --text-muted: #657260;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

main {
    overflow: hidden;
}

/* General section spacing */
.section-padding {
    padding-top: 92px;
    padding-bottom: 92px;
}

.section-tag {
    max-width: 100%;
}

.section-title {
    word-break: normal;
    overflow-wrap: anywhere;
}

.section-text {
    max-width: 100%;
}

/* Topbar responsive */
.topbar {
    position: relative;
    z-index: 1050;
    background: #075b2a;
    color: #ffffff;
    padding: 8px 0;
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.topbar-group {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
}

.topbar-chip i {
    color: var(--yellow);
}

.topbar-chip:hover {
    color: var(--yellow);
}

/* Header logo fix */
.brand-logo img {
    width: 160px !important;
    max-width: 160px;
    height: auto;
    display: block;
}

.navbar-brand {
    margin-right: 18px;
}

/* Header menu overflow protection */
.navbar-collapse {
    max-width: 100%;
}

.navbar-nav {
    align-items: center;
}

.header-enquiry-btn {
    text-decoration: none;
}

/* Common button production hover */
.btn-brand,
.header-enquiry-btn,
.contact-submit-btn,
.footer-cta-btn,
.about-read-btn {
    border: 0;
    text-decoration: none;
}

.btn-brand:hover,
.header-enquiry-btn:hover,
.contact-submit-btn:hover,
.footer-cta-btn:hover,
.about-read-btn:hover {
    text-decoration: none;
}

/* Prevent desktop horizontal overflow from sliders */
.seed-slider-window,
.category-slider-window {
    max-width: 100%;
}

.seed-slider-track,
.category-slider-track {
    touch-action: pan-x;
}

/* Disabled arrow state */
.seed-arrow.is-disabled,
.category-arrow.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Product grid equal height */
.product-grid-row > [class*="col-"] {
    display: flex;
}

.product-card-premium {
    width: 100%;
}

/* Better image rendering */
.seed-card-img img,
.product-card-premium .product-img img {
    object-position: center;
}

/* Contact form required browser style clean */
.seed-enquiry-form input:invalid,
.seed-enquiry-form select:invalid,
.seed-enquiry-form textarea:invalid {
    box-shadow: none;
}

/* Large laptop refinements */
@media (max-width: 1399px) {
    .brand-logo img {
        width: 210px !important;
        max-width: 210px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .section-padding {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .topbar-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .topbar-group {
        width: 100%;
        flex-wrap: wrap;
    }

    .topbar-chip {
        white-space: normal;
        font-size: 11.5px;
    }

    .brand-logo img {
        width: 190px !important;
        max-width: 190px;
    }

    .site-header {
        top: 0;
    }

    .navbar-box {
        width: 100%;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .hero-content .d-flex {
        flex-direction: row;
    }

    .product-catalogue-head,
    .contact-premium-head,
    .category-premium-head,
    .seed-showcase-head {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-padding {
        padding-top: 66px;
        padding-bottom: 66px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .topbar {
        padding: 7px 0;
    }

    .topbar-wrap {
        gap: 5px;
    }

    .topbar-group {
        gap: 7px;
    }

    .topbar-chip {
        font-size: 10.8px;
        line-height: 1.35;
    }

    .topbar-chip:not(.mobile-phone-only) {
        max-width: 100%;
    }

    .brand-logo {
        max-width: calc(100% - 106px);
    }

    .brand-logo img {
        width: 155px !important;
        max-width: 155px;
    }

    .navbar-box {
        min-height: 66px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 112px);
    }

    .navbar .nav-link {
        font-size: 12px;
    }

    .hero-title,
    .section-title,
    .contact-title,
    .quality-title-v2 {
        letter-spacing: 0.025em;
    }

    .hero-content .d-flex {
        flex-direction: column;
    }

    .hero-content .btn {
        width: 100%;
    }

    .trust-feature-grid {
        grid-template-columns: 1fr;
    }

    .trust-feature-card {
        min-height: auto;
    }

    .seed-slider-shell,
    .contact-premium-box,
    .footer-main-box {
        margin-left: -2px;
        margin-right: -2px;
    }

    .seed-slider-top,
    .contact-form-head {
        gap: 12px;
    }

    .seed-slider-actions {
        flex-wrap: nowrap;
    }

    .seed-view-all {
        min-width: 0;
    }

    .product-category-row span,
    .seed-category-pills span {
        min-height: 42px;
    }

    .product-grid-row {
        --bs-gutter-y: 1.25rem;
    }

    .about-story-content .section-title,
    .product-catalogue-section .section-title,
    .seed-showcase-section .section-title,
    .category-premium-section .section-title,
    .contact-title {
        font-size: 32px;
        line-height: 1.12;
    }

    .about-timeline-card,
    .premium-story-card,
    .story-highlight-box {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .quality-side-top span {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .footer-bottom-links {
        gap: 7px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-logo img {
        width: 138px !important;
        max-width: 138px;
    }

    .header-mobile-actions {
        gap: 7px;
    }

    .header-mobile-call,
    .custom-toggler {
        width: 40px;
        height: 40px;
    }

    .hero-slide,
    .hero-row {
        min-height: 600px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 13.5px;
    }

    .hero-badge {
        max-width: 100%;
        text-align: center;
    }

    .seed-slider-actions {
        display: grid;
        grid-template-columns: 44px 44px 1fr;
        width: 100%;
    }

    .seed-view-all {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 11px;
    }

    .seed-card {
        flex-basis: 232px !important;
        width: 232px !important;
        min-width: 232px !important;
        max-width: 232px !important;
    }

    .seed-card-img {
        height: 174px;
    }

    .product-card-premium .product-img {
        height: 205px;
    }

    .category-slide-item {
        flex-basis: 252px;
        width: 252px;
        max-width: 252px;
    }

    .contact-form-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-icon {
        display: none;
    }

    .footer-logo-wrap {
        width: 100%;
        justify-content: center;
    }
}

/* Very small mobile */
@media (max-width: 360px) {
    .brand-logo img {
        width: 124px !important;
        max-width: 124px;
    }

    .hero-title {
        font-size: 27px;
    }

    .seed-card {
        flex-basis: 220px !important;
        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
    }

    .category-slide-item {
        flex-basis: 238px;
        width: 238px;
        max-width: 238px;
    }

    .contact-title,
    .section-title,
    .quality-title-v2 {
        font-size: 28px !important;
    }
}

/* Accessibility and performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =====================================================
   LOCAL SVG ICON SYSTEM - FONT AWESOME REMOVED
===================================================== */

.site-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.svg-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    display: inline-block;
    vertical-align: -0.13em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* Topbar icons */
.topbar-chip .svg-icon {
    color: var(--yellow);
}

/* Header mobile icon */
.header-mobile-call .svg-icon {
    width: 18px;
    height: 18px;
}

/* Navbar icon replacement */
.nav-icon.svg-icon {
    display: none;
}

@media (max-width: 1399px) {
    .nav-icon.svg-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        min-width: 18px;
        padding: 8px;
        box-sizing: content-box;
        border-radius: 12px;
        color: #075b2a;
        background: rgba(17, 146, 69, 0.11);
    }
}

/* Button icons */
.btn .svg-icon,
.header-enquiry-btn .svg-icon,
.contact-submit-btn .svg-icon,
.footer-cta-btn .svg-icon,
.about-read-btn .svg-icon,
.product-enquiry-link .svg-icon,
.category-link .svg-icon,
.seed-view-all .svg-icon {
    width: 16px;
    height: 16px;
}

/* Section tags */
.section-tag .svg-icon,
.quality-tag-v2 .svg-icon,
.trust-kicker .svg-icon,
.hero-badge .svg-icon,
.contact-tag .svg-icon {
    width: 15px;
    height: 15px;
}

/* Slider arrows */
.seed-arrow .svg-icon,
.category-arrow .svg-icon {
    width: 18px;
    height: 18px;
}

/* Trust section */
.trust-feature-icon .svg-icon {
    width: 25px;
    height: 25px;
}

/* Seed and product chips */
.seed-category-pills .svg-icon,
.product-category-row .svg-icon {
    width: 15px;
    height: 15px;
    color: #119245;
}

/* About section */
.story-highlight-icon .svg-icon {
    width: 28px;
    height: 28px;
}

.about-founder-card .svg-icon {
    width: 20px;
    height: 20px;
}

.founder-message-box > .svg-icon {
    color: #e4dc25;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
}

/* Category section */
.category-icon .svg-icon {
    width: 25px;
    height: 25px;
}

.category-card-premium li .svg-icon {
    margin-top: 4px;
    width: 13px;
    height: 13px;
    color: #119245;
}

/* Quality section */
.quality-icon-v2 .svg-icon {
    width: 25px;
    height: 25px;
}

.quality-list-item-v2 .svg-icon {
    margin-top: 3px;
    color: #0d7a36;
    width: 16px;
    height: 16px;
}

.quality-side-top .svg-icon {
    width: 18px;
    height: 18px;
}

/* Contact form field icons */
.contact-field > .svg-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #119245;
    width: 15px;
    height: 15px;
    z-index: 2;
}

.contact-textarea-field > .svg-icon {
    top: 18px;
    transform: none;
}

.contact-info-icon .svg-icon,
.contact-form-icon .svg-icon,
.contact-head-badge > .svg-icon {
    width: 23px;
    height: 23px;
}

/* Footer icons */
.footer-social .svg-icon {
    width: 18px;
    height: 18px;
}

.footer-link-list .svg-icon {
    width: 13px;
    height: 13px;
    color: #e4dc25;
}

.footer-contact-item > span .svg-icon {
    width: 19px;
    height: 19px;
}

/* Hover consistency */
.footer-link-list a:hover .svg-icon {
    color: #ffffff;
}

.product-enquiry-link:hover .svg-icon,
.category-link:hover .svg-icon {
    color: #172217;
}

/* =====================================================
   INLINE SVG ICON FIX
===================================================== */

.svg-icon {
    width: 1em;
    height: 1em;
    min-width: 1em;
    display: inline-block;
    vertical-align: -0.13em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* Navbar icons */
.nav-icon.svg-icon {
    display: none;
}

@media (max-width: 1399px) {
    .nav-icon.svg-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        min-width: 18px;
        padding: 8px;
        box-sizing: content-box;
        border-radius: 12px;
        color: #075b2a;
        background: rgba(17, 146, 69, 0.11);
    }
}

/* Common icon sizes */
.topbar-chip .svg-icon,
.section-tag .svg-icon,
.hero-badge .svg-icon,
.trust-kicker .svg-icon,
.quality-tag-v2 .svg-icon,
.contact-tag .svg-icon {
    width: 15px;
    height: 15px;
}

.btn .svg-icon,
.header-enquiry-btn .svg-icon,
.product-enquiry-link .svg-icon,
.category-link .svg-icon,
.seed-view-all .svg-icon,
.contact-submit-btn .svg-icon,
.footer-cta-btn .svg-icon,
.about-read-btn .svg-icon {
    width: 16px;
    height: 16px;
}

.seed-arrow .svg-icon,
.category-arrow .svg-icon {
    width: 18px;
    height: 18px;
}

.trust-feature-icon .svg-icon,
.category-icon .svg-icon,
.quality-icon-v2 .svg-icon {
    width: 25px;
    height: 25px;
}

.story-highlight-icon .svg-icon {
    width: 28px;
    height: 28px;
}

.about-founder-card .svg-icon,
.footer-contact-item > span .svg-icon {
    width: 20px;
    height: 20px;
}

.founder-message-box > .svg-icon {
    width: 34px;
    height: 34px;
    color: #e4dc25;
    margin-bottom: 14px;
}

.contact-field > .svg-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #119245;
    width: 15px;
    height: 15px;
    z-index: 2;
}

.contact-textarea-field > .svg-icon {
    top: 18px;
    transform: none;
}

.footer-social .svg-icon {
    width: 18px;
    height: 18px;
}

.footer-link-list .svg-icon {
    width: 13px;
    height: 13px;
    color: #e4dc25;
}

.category-card-premium li .svg-icon,
.quality-list-item-v2 .svg-icon {
    margin-top: 4px;
    width: 14px;
    height: 14px;
    color: #119245;
}

.product-category-row .svg-icon,
.seed-category-pills .svg-icon {
    color: #119245;
}



/* =====================================================
   STICKY HEADER FINAL FIX
===================================================== */

.sticky-header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #f7fbf1;
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky {
    box-shadow: 0 18px 45px rgba(7, 91, 42, 0.16);
}

/* Topbar inside sticky wrapper */
.sticky-header-wrapper .topbar {
    position: relative !important;
    z-index: 2;
    background: #075b2a;
    padding: 8px 0;
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .topbar {
    padding: 4px 0;
}

/* Header reset */
.sticky-header-wrapper .site-header {
    position: relative !important;
    top: auto !important;
    z-index: 1;
    padding: 12px 0;
    background: rgba(247, 251, 241, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(7, 91, 42, 0.08);
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .site-header {
    padding: 7px 0;
    background: rgba(247, 251, 241, 0.98);
}

/* Navbar shrink on scroll */
.sticky-header-wrapper .navbar-box {
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .navbar-box {
    min-height: 66px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(7, 91, 42, 0.13);
}

/* Logo size fix */
.brand-logo img {
    width: 160px !important;
    max-width: 160px;
    height: auto;
    display: block;
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .brand-logo img {
    width: 132px !important;
    max-width: 132px;
}

/* Smooth anchor offset support */
html {
    scroll-padding-top: 170px;
}

/* Mobile sticky header */
@media (max-width: 991px) {
    html {
        scroll-padding-top: 190px;
    }

    .sticky-header-wrapper .topbar {
        padding: 6px 0;
    }

    .sticky-header-wrapper.is-sticky .topbar {
        padding: 4px 0;
    }

    .sticky-header-wrapper .site-header {
        padding: 8px 0;
    }

    .sticky-header-wrapper.is-sticky .site-header {
        padding: 6px 0;
    }

    .brand-logo img {
        width: 145px !important;
        max-width: 145px;
    }

    .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 122px !important;
        max-width: 122px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 135px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 210px;
    }

    .brand-logo img {
        width: 126px !important;
        max-width: 126px;
    }

    .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 112px !important;
        max-width: 112px;
    }
}

/* =====================================================
   SVG ICON VISIBILITY FIX
===================================================== */

.svg-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.nav-icon.svg-icon {
    width: 18px;
    height: 18px;
}

button .svg-icon,
a .svg-icon {
    pointer-events: none;
}

/* =====================================================
   FINAL FIXED STICKY HEADER
===================================================== */

body.has-fixed-header {
    padding-top: var(--fixed-header-height, 150px) !important;
}

.sticky-header-wrapper {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: #f7fbf1;
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky {
    box-shadow: 0 18px 45px rgba(7, 91, 42, 0.18);
}

/* Topbar */
.sticky-header-wrapper .topbar {
    position: relative !important;
    z-index: 2;
    background: #075b2a;
    padding: 8px 0;
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .topbar {
    padding: 4px 0;
}

/* Header reset */
.sticky-header-wrapper .site-header {
    position: relative !important;
    top: auto !important;
    z-index: 1;
    padding: 12px 0;
    background: rgba(247, 251, 241, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(7, 91, 42, 0.08);
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .site-header {
    padding: 7px 0;
}

/* Navbar shrink */
.sticky-header-wrapper .navbar-box {
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .navbar-box {
    min-height: 66px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(7, 91, 42, 0.13);
}

/* Logo */
.sticky-header-wrapper .brand-logo img {
    width: 160px !important;
    max-width: 160px;
    height: auto;
    display: block;
    transition: all 0.28s ease;
}

.sticky-header-wrapper.is-sticky .brand-logo img {
    width: 132px !important;
    max-width: 132px;
}

/* Anchor scroll offset */
html {
    scroll-padding-top: var(--fixed-header-height, 150px);
}

/* Mobile menu inside fixed header */
@media (max-width: 1399px) {
    .sticky-header-wrapper .navbar-collapse {
        max-height: calc(100vh - 135px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    .sticky-header-wrapper .topbar {
        padding: 6px 0;
    }

    .sticky-header-wrapper.is-sticky .topbar {
        padding: 4px 0;
    }

    .sticky-header-wrapper .site-header {
        padding: 8px 0;
    }

    .sticky-header-wrapper.is-sticky .site-header {
        padding: 6px 0;
    }

    .sticky-header-wrapper .brand-logo img {
        width: 145px !important;
        max-width: 145px;
    }

    .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 122px !important;
        max-width: 122px;
    }
}

@media (max-width: 480px) {
    .sticky-header-wrapper .brand-logo img {
        width: 126px !important;
        max-width: 126px;
    }

    .sticky-header-wrapper.is-sticky .brand-logo img {
        width: 112px !important;
        max-width: 112px;
    }
}


/* =====================================================
   STICKY WHATSAPP POPUP
===================================================== */

.ij-wa-widget {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999999;
    font-family: "Poppins", sans-serif;
}

.ij-wa-float {
    position: relative;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(7, 91, 42, 0.35);
    transition: all 0.3s ease;
}

.ij-wa-float:hover {
    transform: translateY(-5px) scale(1.04);
    background: linear-gradient(135deg, #119245, #075b2a);
}

.ij-wa-float svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 2;
}

.ij-wa-pulse {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.24);
    animation: ijWaPulse 1.7s infinite;
}

@keyframes ijWaPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

.ij-wa-popup {
    position: absolute;
    left: 0;
    bottom: 82px;
    width: 340px;
    max-width: calc(100vw - 34px);
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.12);
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.25);
    transform: translateY(18px) scale(0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.28s ease;
}

.ij-wa-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ij-wa-popup::before {
    content: "";
    position: absolute;
    left: 24px;
    bottom: -9px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    border-right: 1px solid rgba(7, 91, 42, 0.12);
    border-bottom: 1px solid rgba(7, 91, 42, 0.12);
}

.ij-wa-close {
    position: absolute;
    left: 13px;
    top: 13px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ij-wa-close:hover {
    color: #075b2a;
    background: #e4dc25;
    transform: rotate(90deg);
}

.ij-wa-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
}

.ij-wa-header {
    padding: 24px 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.22), transparent 38%),
        linear-gradient(135deg, #003918 0%, #075b2a 55%, #119245 100%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.ij-wa-logo {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: #ffffff;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ij-wa-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ij-wa-header h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 23px;
    line-height: 1.08;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ij-wa-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12.5px;
    font-weight: 600;
}

.ij-wa-body {
    padding: 22px;
    background:
        radial-gradient(circle at bottom left, rgba(228, 220, 37, 0.12), transparent 34%),
        #ffffff;
}

.ij-wa-message {
    position: relative;
    margin-bottom: 16px;
    padding: 17px 18px;
    border-radius: 20px 20px 20px 4px;
    background: #f7fbf1;
    border: 1px solid rgba(7, 91, 42, 0.10);
}

.ij-wa-message span {
    display: block;
    margin-bottom: 5px;
    color: #075b2a;
    font-size: 13px;
    font-weight: 900;
}

.ij-wa-message p {
    margin: 0;
    color: #172217;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.ij-wa-chat-btn,
.ij-wa-call-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ij-wa-chat-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    margin-bottom: 10px;
}

.ij-wa-call-btn {
    color: #075b2a;
    background: #e4dc25;
}

.ij-wa-chat-btn:hover,
.ij-wa-call-btn:hover {
    color: #ffffff;
    background: #031f0e;
    transform: translateY(-3px);
}

.ij-wa-chat-btn svg,
.ij-wa-call-btn svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 575px) {
    .ij-wa-widget {
        left: 16px;
        bottom: 16px;
    }

    .ij-wa-float {
        width: 58px;
        height: 58px;
    }

    .ij-wa-float svg {
        width: 29px;
        height: 29px;
    }

    .ij-wa-popup {
        width: 315px;
        bottom: 76px;
        border-radius: 22px;
    }

    .ij-wa-header {
        padding: 20px 18px;
    }

    .ij-wa-logo {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .ij-wa-header h4 {
        font-size: 20px;
    }

    .ij-wa-body {
        padding: 18px;
    }
}


/* =====================================================
   STICKY WHATSAPP CHAT - FINAL WORKING CSS
===================================================== */

.ij-wa-widget {
    position: fixed !important;
    right: 24px;
    bottom: 24px;
    z-index: 999999 !important;
    font-family: "Poppins", sans-serif;
}

.ij-wa-float {
    position: relative;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(7, 91, 42, 0.35);
    transition: all 0.3s ease;
    z-index: 2;
}

.ij-wa-float:hover {
    transform: translateY(-5px) scale(1.04);
}

.ij-wa-float svg,
.ij-wa-chat-btn svg,
.ij-wa-call-btn svg,
.ij-wa-close svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ij-wa-float svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.ij-wa-pulse {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: rgba(17, 146, 69, 0.24);
    animation: ijWaPulse 1.7s infinite;
}

@keyframes ijWaPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

.ij-wa-popup {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: 340px;
    max-width: calc(100vw - 34px);
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 42, 0.12);
    box-shadow: 0 28px 70px rgba(7, 91, 42, 0.25);
    transform: translateY(18px) scale(0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.28s ease;
}

.ij-wa-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ij-wa-popup::before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -9px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    border-right: 1px solid rgba(7, 91, 42, 0.12);
    border-bottom: 1px solid rgba(7, 91, 42, 0.12);
}

.ij-wa-close {
    position: absolute;
    left: 13px;
    top: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ij-wa-close:hover {
    color: #075b2a;
    background: #e4dc25;
}

.ij-wa-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

.ij-wa-header {
    padding: 24px 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(228, 220, 37, 0.22), transparent 38%),
        linear-gradient(135deg, #003918 0%, #075b2a 55%, #119245 100%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.ij-wa-logo {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: #ffffff;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ij-wa-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ij-wa-header h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 23px;
    line-height: 1.08;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ij-wa-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12.5px;
    font-weight: 600;
}

.ij-wa-body {
    padding: 22px;
    background: #ffffff;
}

.ij-wa-message {
    margin-bottom: 16px;
    padding: 17px 18px;
    border-radius: 20px 20px 20px 4px;
    background: #f7fbf1;
    border: 1px solid rgba(7, 91, 42, 0.10);
}

.ij-wa-message span {
    display: block;
    margin-bottom: 5px;
    color: #075b2a;
    font-size: 13px;
    font-weight: 900;
}

.ij-wa-message p {
    margin: 0;
    color: #172217;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.ij-wa-chat-btn,
.ij-wa-call-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ij-wa-chat-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #075b2a, #119245);
    margin-bottom: 10px;
}

.ij-wa-call-btn {
    color: #075b2a;
    background: #e4dc25;
}

.ij-wa-chat-btn:hover,
.ij-wa-call-btn:hover {
    color: #ffffff;
    background: #031f0e;
    transform: translateY(-3px);
}

.ij-wa-chat-btn svg,
.ij-wa-call-btn svg {
    width: 17px;
    height: 17px;
}

@media (max-width: 575px) {
    .ij-wa-widget {
        right: 16px;
        bottom: 16px;
    }

    .ij-wa-float {
        width: 58px;
        height: 58px;
    }

    .ij-wa-float svg {
        width: 29px;
        height: 29px;
    }

    .ij-wa-popup {
        width: 315px;
        bottom: 76px;
        border-radius: 22px;
    }

    .ij-wa-header {
        padding: 20px 18px;
    }

    .ij-wa-logo {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .ij-wa-header h4 {
        font-size: 20px;
    }

    .ij-wa-body {
        padding: 18px;
    }
}

/* WhatsApp popup close icon right-side fix */
.ij-wa-popup {
    position: absolute !important;
    overflow: hidden;
}

.ij-wa-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    z-index: 99 !important;

    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 50% !important;

    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18) !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    cursor: pointer;
}

.ij-wa-close svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.ij-wa-close:hover {
    color: #075b2a !important;
    background: #e4dc25 !important;
}

/* =====================================================
   FOOTER SVG + SPACING FINAL FIX
===================================================== */

.footer-premium svg.ijp-icon {
    width: 1em !important;
    height: 1em !important;
    min-width: 1em !important;
    max-width: 1em !important;
    max-height: 1em !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    vertical-align: -0.15em !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    overflow: visible !important;
}

.footer-premium svg.ijp-icon path,
.footer-premium svg.ijp-icon circle,
.footer-premium svg.ijp-icon line,
.footer-premium svg.ijp-icon polyline,
.footer-premium svg.ijp-icon polygon {
    fill: none !important;
    stroke: currentColor !important;
}

.footer-premium .footer-link-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer-premium .footer-link-list li {
    margin: 0 0 13px !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

.footer-premium .footer-link-list a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    width: auto !important;
    min-height: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    text-decoration: none !important;
    text-align: left !important;
    transform: none !important;
}

.footer-premium .footer-link-list a:hover {
    color: #e4dc25 !important;
}

.footer-premium .footer-link-list a .ijp-icon {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    color: #e4dc25 !important;
}

.footer-premium .footer-social {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.footer-premium .footer-social a {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #031f0e !important;
    background: #e4dc25 !important;
}

.footer-premium .footer-social a .ijp-icon {
    width: 17px !important;
    height: 17px !important;
}

.footer-premium .footer-contact-item > span {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #031f0e !important;
    background: #e4dc25 !important;
}

.footer-premium .footer-contact-item > span .ijp-icon {
    width: 18px !important;
    height: 18px !important;
}

.footer-premium .footer-cta-btn .ijp-icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
}

@media (max-width: 991px) {
    .footer-premium .footer-widget {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .footer-premium .footer-link-list a {
        font-size: 12.5px !important;
    }
}


/* =====================================================
   FOOTER SVG ICON FINAL FIX
===================================================== */

.footer-premium .ijp-icon {
    width: 1em !important;
    height: 1em !important;
    min-width: 1em !important;
    display: inline-block !important;
    vertical-align: -0.15em !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
}

.footer-premium .ijp-icon path,
.footer-premium .ijp-icon circle,
.footer-premium .ijp-icon line,
.footer-premium .ijp-icon polyline,
.footer-premium .ijp-icon polygon {
    fill: none !important;
    stroke: currentColor !important;
}

.footer-premium .footer-social a .ijp-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}

.footer-premium .footer-link-list a .ijp-icon {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    color: #e4dc25 !important;
}

.footer-premium .footer-contact-item > span .ijp-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}

.footer-premium .footer-cta-btn .ijp-icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
}