/*
Theme Name: Ecobionex
Theme URI: https://ecobionex.com
Author: Ecobionex
Description: Ecobionex - Waste Recycling Management Company
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: ecobionex
*/
:root {
    --green: #2ba03f;
    --green-dark: #1e7a2d;
    --green-light: #38c451;
    --cream: #d5ecd9;
    --white: #ffffff;
    --dark: #1a2e1d;
    --gray: #5a6a5e;
    --light: #f7fbf8;
    --border: #e2ede4;
    --shadow: 0 2px 16px rgba(43, 160, 63, .10);
    --shadow-md: 0 4px 28px rgba(43, 160, 63, .18);
    --r: 14px;
    --r-sm: 8px;
    --tr: all .28s ease
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tr)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px
}

.sec {
    padding: 64px 0
}

/* ── Inner Page Hero ───────────────────────── */
.inner-hero {
    background: linear-gradient(135deg, #0d2e15 0%, #1a5c26 55%, #2ba03f 100%);
    padding: 80px 0 60px;
    text-align: center
}

.inner-hero .sec-tag {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.inner-hero h1 {
    color: #fff;
    font-size: clamp(26px, 4vw, 42px);
    margin-top: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800
}

.inner-hero p {
    color: rgba(255, 255, 255, .75);
    max-width: 500px;
    margin: 12px auto 0;
    font-size: 15px
}

.sec-sm {
    padding: 44px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--tr);
    font-family: 'Nunito', sans-serif
}

.btn-green {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green)
}

.btn-outline:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px)
}

.btn-white {
    background: #fff;
    color: var(--green-dark);
    border-color: #fff
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px)
}

.sec-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--green-dark);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px
}

.sec-title {
    font-size: clamp(22px, 3.5vw, 36px);
    color: var(--dark);
    margin-bottom: 12px
}

.sec-title span {
    color: var(--green)
}

.sec-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8
}

/* HEADER */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: #fff;
    box-shadow: 0 1px 0 var(--border);
    transition: var(--tr)
}

#site-header.scrolled {
    box-shadow: var(--shadow)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1140px;
    margin: 0 auto
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-box {
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green)
}

.logo-name em {
    color: var(--dark);
    font-style: normal
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.main-nav a {
    padding: 7px 13px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark)
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    background: var(--cream)
}

.hdr-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--green);
    border: none;
    border-radius: 8px;
    padding: 9px 10px;
    cursor: pointer
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: var(--tr)
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 8998
}

.mob-overlay.show {
    display: block
}

.mob-drawer {
    position: fixed;
    top: 0;
    right: -290px;
    width: 270px;
    height: 100vh;
    background: var(--green);
    z-index: 8999;
    padding: 70px 0 30px;
    overflow-y: auto;
    transition: right .32s ease;
    box-shadow: -6px 0 30px rgba(0, 0, 0, .12)
}

.mob-drawer.show {
    right: 0
}

.mob-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, .2);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.mob-logo {
    padding: 0 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    margin-bottom: 6px
}

.mob-drawer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: var(--tr)
}

.mob-drawer a:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding-left: 26px
}

.mob-foot {
    padding: 20px
}

.mob-foot .btn {
    width: 100%;
    justify-content: center
}

.mob-drawer .logo-name {
    color: #fff
}

.mob-drawer .mob-foot .btn-green {
    background: #fff;
    color: var(--green);
    border-color: #fff
}

.mob-drawer .mob-foot .btn-green:hover {
    background: var(--cream);
    color: var(--green-dark)
}

/* HERO SLIDER */
#hero {
    position: relative;
    height: calc(100vh - 68px);
    min-height: 500px;
    max-height: 780px;
    overflow: hidden;
    margin-top: 68px
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    z-index: 2
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 30, 14, .78) 0%, rgba(10, 30, 14, .35) 60%, rgba(10, 30, 14, .12) 100%)
}

.hero-slide-default {
    background: linear-gradient(135deg, #0d2e15 0%, #1a5c26 55%, #2ba03f 100%)
}

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%
}

.hero-text {
    max-width: 560px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(6px)
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-size: clamp(26px, 4.5vw, 52px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2
}

.hero-title .hl {
    color: #4ade80
}

.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
    line-height: 1.75;
    max-width: 470px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.s-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: var(--tr);
    padding: 0
}

.s-dot.active {
    background: #fff;
    transform: scale(1.3)
}

.sl-prev,
.sl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    backdrop-filter: blur(4px)
}

.sl-prev {
    left: 20px
}

.sl-next {
    right: 20px
}

.sl-prev:hover,
.sl-next:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-50%) scale(1.08)
}

/* ABOUT */
#about {
    background: #fff
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.about-img-side {
    position: relative
}

.about-img-main,
.about-img-ph {
    width: 100%;
    height: 340px;
    border-radius: var(--r);
    box-shadow: var(--shadow-md)
}

.about-img-main {
    object-fit: cover
}

.about-img-ph {
    background: linear-gradient(135deg, var(--cream), #c0ddc6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px
}

.about-chip {
    position: absolute;
    bottom: -14px;
    right: 18px;
    background: var(--green);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: var(--shadow-md)
}

.about-chip strong {
    display: block;
    font-size: 24px;
    font-family: 'Playfair Display', serif
}

.about-chip span {
    font-size: 11px;
    opacity: .85
}

.about-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px
}

.about-pts {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px
}

.about-pt {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--dark)
}

.about-pt::before {
    content: '✓';
    width: 19px;
    height: 19px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0
}

.about-mkts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px
}

.mkt-chip {
    background: var(--cream);
    color: var(--green-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600
}

/* WHY CHOOSE */
#why-choose {
    background: var(--light)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.why-card {
    background: #fff;
    border-radius: var(--r);
    padding: 28px 22px;
    border: 1px solid var(--border);
    transition: var(--tr);
    text-align: center
}

.why-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.w-icon {
    width: 54px;
    height: 54px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
    transition: var(--tr)
}

.why-card:hover .w-icon {
    background: var(--green)
}

.why-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700
}

.why-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65
}

/* why-card-clean: icon+text centered, no border */
.why-card-clean {
    background: #fff;
    border-radius: var(--r);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: var(--tr);
    text-align: center
}

.why-card-clean:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.w-icon-only {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    line-height: 1
}

.why-card-clean h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #0d2e15
}

.why-card-clean p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65
}

/* why-grid-clean overrides */
.why-grid-clean {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 0
}

@media(max-width:900px) {
    .why-grid-clean {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .why-grid-clean {
        grid-template-columns: 1fr
    }
}

/* PRODUCTS */
#products {
    background: #fff
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px
}

.prod-card {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--tr)
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green)
}

.prod-img {
    height: 165px;
    background: linear-gradient(135deg, var(--cream), #b8dfc0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0
}

.prod-body {
    padding: 18px
}

.prod-body h3 {
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 6px
}

.prod-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px
}

.prod-tag {
    background: var(--cream);
    color: var(--green-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700
}

.prod-read {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--green);
    font-weight: 700;
    margin-top: 10px
}

.prod-read:hover {
    gap: 8px
}

/* MISSION & VISION — Simplified Design */
.mv-sec {
    background: linear-gradient(180deg, #dff0e8 0%, #eef8f2 40%, #f5fbf7 100%);
    padding: 80px 0
}

.mv-header {
    text-align: center;
    margin-bottom: 56px
}

.mv-main-title {
    font-size: clamp(26px, 4vw, 38px);
    color: #0d2e15;
    font-weight: 900;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.5px
}

.mv-divider {
    width: 48px;
    height: 4px;
    background: var(--green);
    border-radius: 4px;
    margin: 0 auto 20px
}

.mv-subtitle {
    font-size: 15px;
    color: #5a6a5e;
    font-weight: 500
}

.mv-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto
}

.mv-card-new {
    background: #ffffff;
    border: 1px solid #e0ede5;
    border-radius: 16px;
    padding: 36px 32px;
    transition: var(--tr);
    box-shadow: 0 4px 24px rgba(43, 160, 63, 0.06)
}

.mv-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(43, 160, 63, 0.14);
    border-color: var(--green)
}

.mv-card-label {
    display: inline-block;
    background: #e8f5ec;
    color: #1a5c26;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px
}

.mv-card-title {
    font-size: 21px;
    color: #0d2e15;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif
}

.mv-card-desc {
    font-size: 14px;
    color: #5a6a5e;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500
}

.mv-card-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.mv-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
    font-weight: 600
}

.mv-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    display: inline-block
}

@media(max-width:700px) {
    .mv-card-grid {
        grid-template-columns: 1fr
    }

    .mv-sec {
        padding: 50px 0
    }
}

/* GALLERY */
#gallery {
    background: var(--light)
}

.gallery-head {
    text-align: center;
    margin-bottom: 36px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--cream)
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16/9
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.gallery-item:hover img {
    transform: scale(1.06)
}

.g-ov {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 14, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tr)
}

.gallery-item:hover .g-ov {
    opacity: 1
}

.g-ov span {
    font-size: 26px;
    color: #fff
}

.g-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    background: linear-gradient(135deg, var(--cream), #c0ddc6)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center
}

.lightbox.show {
    display: flex
}

.lb-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain
}

.lb-close {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #fff;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: .8;
    line-height: 1
}

.lb-close:hover {
    opacity: 1
}

/* VIDEO */
#video-section {
    background: #f0faf3;
    padding: 50px 0
}

.vid-head {
    text-align: center;
    margin-bottom: 34px
}

.vid-head .sec-title {
    color: #1a3a2a
}

.vid-head .sec-desc {
    color: #5a6a5e
}

.vid-head .sec-tag {
    background: #d5ecd9;
    color: #1e7a2d
}

.vid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.vid-card {
    border-radius: var(--r);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(43, 160, 63, 0.12);
    border: 1px solid #d5ecd9
}

.vid-card iframe {
    width: 100%;
    height: 235px;
    display: block;
    border: none
}

.vid-thumb {
    width: 100%;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #111;
    cursor: pointer
}

.vid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 1
}

.play-btn {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green);
    border: none;
    cursor: pointer;
    transition: var(--tr);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--green);
    color: #fff
}

.vid-info {
    padding: 12px 14px;
    background: #f7fbf8
}

.vid-info h4 {
    font-size: 13px;
    color: #1a3a2a;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 3px
}

.vid-info p {
    font-size: 12px;
    color: #5a6a5e
}

.vid-note {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: #5a6a5e
}

/* BLOG */
#blog {
    background: #fff
}

.blog-head {
    text-align: center;
    margin-bottom: 36px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--tr)
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green)
}

.blog-thumb {
    display: block;
    height: 172px;
    overflow: hidden;
    background: var(--cream)
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05)
}

.blog-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background: linear-gradient(135deg, var(--cream), #b8dfc0)
}

.blog-body {
    padding: 16px
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px
}

.blog-cat {
    background: var(--cream);
    color: var(--green-dark);
    padding: 2px 9px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700
}

.blog-date {
    font-size: 11px;
    color: var(--gray)
}

.blog-card h3 {
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--dark);
    line-height: 1.4
}

.blog-card h3 a:hover {
    color: var(--green)
}

.blog-excerpt {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 10px
}

.blog-link {
    font-size: 12px;
    color: var(--green);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.blog-link:hover {
    gap: 8px
}

.blog-empty {
    text-align: center;
    padding: 44px 20px;
    color: var(--gray);
    grid-column: 1/-1
}

.blog-empty a {
    color: var(--green);
    font-weight: 700
}

/* CONTACT */
#contact {
    background: var(--light)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px
}

.contact-info h3 {
    font-size: 19px;
    margin-bottom: 6px
}

.contact-info>p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px
}

.c-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 20px
}

.c-item {
    display: flex;
    gap: 11px;
    align-items: flex-start
}

.c-ico {
    width: 38px;
    height: 38px;
    background: var(--cream);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.c-txt strong {
    display: block;
    font-size: 12px;
    color: var(--dark);
    margin-bottom: 2px;
    font-weight: 700
}

.c-txt a,
.c-txt span {
    font-size: 13px;
    color: var(--gray)
}

.c-txt a:hover {
    color: var(--green)
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--tr)
}

.wa-btn:hover {
    background: #1aad57;
    color: #fff;
    transform: translateY(-2px)
}

.cf-box {
    background: #fff;
    border-radius: var(--r);
    padding: 28px;
    border: 1px solid var(--border)
}

.cf-box h3 {
    font-size: 17px;
    margin-bottom: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.f-group {
    margin-bottom: 14px
}

.f-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .4px
}

.f-group input,
.f-group textarea,
.f-group select {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--dark);
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: var(--tr);
    background: var(--light)
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(43, 160, 63, .1);
    background: #fff
}

.f-group textarea {
    resize: vertical;
    min-height: 95px
}

.f-submit {
    width: 100%;
    justify-content: center;
    padding: 12px
}

#c-resp {
    margin-bottom: 12px
}

.c-ok {
    background: #dcfce7;
    color: #15803d;
    padding: 9px 13px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600
}

.c-err {
    background: #fee2e2;
    color: #dc2626;
    padding: 9px 13px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600
}

/* FOUNDER */
#founder {
    background: var(--cream)
}

.founder-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 44px;
    align-items: center
}

.f-card {
    text-align: center
}

.f-photo {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    box-shadow: 0 0 0 6px rgba(43, 160, 63, .18)
}

.f-avatar {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto 12px;
    box-shadow: 0 0 0 6px rgba(43, 160, 63, .18)
}

.f-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    margin-bottom: 3px
}

.f-role {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.f-soc {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 12px
}

.f-soc a {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 1px solid var(--border);
    transition: var(--tr)
}

.f-soc a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.f-msg {
    background: #fff;
    border-radius: var(--r);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative
}

.f-quote {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: var(--cream);
    position: absolute;
    top: 4px;
    left: 20px;
    line-height: 1
}

.f-msg-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 18px;
    position: relative;
    z-index: 1
}

.f-sig {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.f-sig strong {
    display: block;
    font-size: 13px;
    color: var(--dark)
}

.f-sig span {
    font-size: 11px;
    color: var(--green-dark)
}

/* FOOTER */
#site-footer {
    background: #f0faf3;
    border-top: 2px solid #c5e8cc;
    font-weight: 700;
}
#site-footer * {
    font-weight: 700 !important;
}

.footer-body {
    padding: 50px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 36px
}

.f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.f-logo .logo-name {
    color: #1a3a2a
}

.f-desc {
    font-size: 13px;
    color: #5a6a5e;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 250px
}

.f-socs {
    display: flex;
    gap: 7px
}

.f-socs a {
    width: 34px;
    height: 34px;
    background: #e8f5ec;
    border: 1px solid #c5e8cc;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: var(--tr)
}

.f-socs a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-2px)
}

.f-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #1a3a2a;
    margin-bottom: 14px;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px
}

.f-col ul li {
    margin-bottom: 7px
}

.f-col ul li a {
    font-size: 13px;
    color: #5a6a5e;
    transition: var(--tr)
}

.f-col ul li a:hover {
    color: var(--green-light);
    padding-left: 3px
}

.f-cl {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.f-ci {
    display: flex;
    gap: 8px
}

.f-ci-icon {
    font-size: 13px;
    color: var(--green-light);
    margin-top: 2px;
    flex-shrink: 0
}

.f-ci-text {
    font-size: 12px;
    color: #5a6a5e;
    line-height: 1.5
}

.f-ci-text a {
    color: #5a6a5e
}

.f-ci-text a:hover {
    color: var(--green-light)
}

.footer-bottom {
    border-top: 1px solid #c5e8cc;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px
}

.footer-bottom p {
    font-size: 12px;
    color: #5a6a5e
}

.fb-links {
    display: flex;
    gap: 16px
}

.fb-links a {
    font-size: 12px;
    color: #5a6a5e
}

.fb-links a:hover {
    color: var(--green-light)
}

#btt {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--tr);
    opacity: 0;
    pointer-events: none;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center
}

#btt.show {
    opacity: 1;
    pointer-events: all
}

#btt:hover {
    background: var(--green-dark);
    transform: translateY(-3px)
}

/* PAGE TEMPLATES */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 104px 0 46px;
    text-align: center;
    color: #fff
}

.page-hero h1 {
    font-size: clamp(22px, 3.5vw, 38px);
    color: #fff;
    margin-bottom: 10px
}

.page-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    max-width: 540px;
    margin: 0 auto
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55)
}

.breadcrumb a {
    color: #4ade80
}

.page-body {
    padding: 56px 0
}

.entry-content {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto
}

.entry-content h2 {
    color: var(--dark);
    margin: 24px 0 10px
}

.entry-content p {
    margin-bottom: 14px
}

/* ═══════════════════════════════════════════════════
   GLOBAL: Bold text throughout (header + all labels)
   ═══════════════════════════════════════════════════ */
body {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

.sec-title {
    font-weight: 900;
}

.sec-tag {
    font-weight: 800;
}

p {
    font-weight: 500;
}

.btn {
    font-weight: 800;
}

.main-nav a {
    font-weight: 700;
}

.logo-name {
    font-weight: 900;
}

/* Header nav links bold */
#site-header {
    font-weight: 700;
}

.mob-drawer a {
    font-weight: 700;
}

/* ── HERO (Fixed) ── */
.hero-wrapper {
    position: relative;
    height: 85vh;
    min-height: 560px;
    max-height: 820px;
    background: #0d2e15;
    overflow: hidden;
    margin-top: 68px;
}

/* Video Hero */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-bg .hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    z-index: 2;
}

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    z-index: 2;
}

.hero-gradient-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d2e15 0%, #1a5c26 55%, #2ba03f 100%);
}

.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .hl {
    color: #4ade80;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--tr);
    font-family: 'Nunito', sans-serif;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--green-dark);
}

.sl-prev,
.sl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    backdrop-filter: blur(4px);
}

.sl-prev {
    left: 18px;
}

.sl-next {
    right: 18px;
}

.sl-prev:hover,
.sl-next:hover {
    background: var(--green);
    border-color: var(--green);
}

.slider-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.s-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: var(--tr);
    padding: 0;
}

.s-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ── Why Choose ── */
.why-card-clean {
    background: #fff;
    border-radius: var(--r);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: var(--tr);
    text-align: center;
}

.why-card-clean:hover {
    border-color: var(--green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.w-icon-only {
    font-size: 44px;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.why-card-clean h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #0d2e15;
}

.why-card-clean p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
    font-weight: 500;
}

/* 4-column grid */
.why-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

@media(max-width:1024px) {
    .why-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width:520px) {
    .why-grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── Products ── */
.prod-clean-grid,
.product-landscape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    text-align: center;
    margin-top: 30px;
}

.prod-card-clean,
.prod-item {
    background: transparent;
    padding: 16px 10px;
    border: none;
    border-radius: var(--r);
    transition: var(--tr);
}

.prod-item:hover {
    transform: translateY(-5px);
}

.p-icon-only,
.p-icon-box {
    font-size: 50px;
    margin-bottom: 18px;
    display: block;
    line-height: 1;
}

.prod-card-clean h3,
.prod-item h3 {
    font-size: 20px;
    color: #0d2e15;
    margin-bottom: 10px;
    font-weight: 800;
}

.prod-card-clean p,
.prod-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.view-details-link {
    display: inline-block;
    color: #1a5c26;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: .3s;
    margin-top: 8px;
}

.view-details-link:hover {
    border-bottom-color: #1a5c26;
}

@media(max-width:991px) {

    .prod-clean-grid,
    .product-landscape-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media(max-width:600px) {

    .prod-clean-grid,
    .product-landscape-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Products Section (Fixed) ── */
.products-sec {
    padding: 80px 0;
    background: #f9fbf9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tag-badge {
    background: #e8f5e9;
    color: #1a5c26;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
}

.title-main {
    font-size: clamp(22px, 3.5vw, 35px);
    color: #0d2e15;
    margin-top: 15px;
    font-weight: 900;
}

/* ═══════════════════════════════════════════
   CONTACT: 3-column layout
   ═══════════════════════════════════════════ */
.contact-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    max-width: 680px;
    margin: 0 auto;
}

@media(max-width:700px) {
    .contact-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   OIL COLLECTION HIGHLIGHT BOX
   ═══════════════════════════════════════════ */
.oil-highlight-box {
    border: 2px solid var(--green) !important;
    box-shadow: 0 0 0 4px rgba(43, 160, 63, .12), var(--shadow-md);
    position: relative;
    background: linear-gradient(160deg, #f7fbf8 0%, #ffffff 100%) !important;
}

.oil-highlight-box h3 {
    color: var(--green-dark);
    font-weight: 900;
    font-size: 18px;
}

.oil-highlight-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(43, 160, 63, .35);
}

.radio-group {
    display: flex;
    gap: 14px;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--light);
    align-items: center;
    flex-wrap: wrap;
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.radio-opt input {
    width: auto;
    cursor: pointer;
}

/* ═══════════════════════════════════════════
   ADMIN INBOX STYLES
   ═══════════════════════════════════════════ */
.eco-inbox {
    max-width: 900px;
}

.eco-no-msg {
    padding: 40px;
    text-align: center;
    color: #888;
    font-size: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px dashed #ddd;
}

.eco-msg-card {
    background: #fff;
    border: 1px solid #e2ede4;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: opacity .4s;
}

.eco-msg-card.eco-unread {
    border-left: 4px solid #2ba03f;
}

.eco-msg-card.eco-read {
    opacity: .75;
}

.eco-msg-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #f7fbf8;
    border-bottom: 1px solid #e8f0ea;
    flex-wrap: wrap;
    gap: 8px;
}

.eco-msg-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.eco-new-dot {
    color: #2ba03f;
    font-size: 10px;
}

.eco-msg-meta strong {
    font-size: 15px;
    color: #0d2e15;
}

.eco-msg-type {
    background: #e8f5e9;
    color: #1a5c26;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.eco-msg-date {
    font-size: 11px;
    color: #888;
}

.eco-msg-actions {
    display: flex;
    gap: 7px;
}

.eco-btn-sm {
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.eco-btn-read {
    background: #dcfce7;
    color: #15803d;
}

.eco-btn-del {
    background: #fee2e2;
    color: #dc2626;
}

.eco-msg-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eco-msg-row {
    font-size: 13px;
    color: #444;
}

.eco-msg-row span {
    font-weight: 700;
    color: #0d2e15;
    margin-right: 6px;
}

.eco-msg-row a {
    color: var(--green);
}

/* Dashboard badge for unread count */
.eco-dc-inbox {
    position: relative;
}

.eco-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2ba03f;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 50px;
}

/* ═══════════════════════════════════════════
   BRAND & MISSION/VISION CLEANUP
   ═══════════════════════════════════════════ */
.brand-sec {
    background: #ffffff;
}

.brand-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fcfdfc;
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid #eef6ef;
    position: relative;
    overflow: hidden;
}

.brand-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.03;
    pointer-events: none;
}

.tag-brand {
    display: inline-block;
    background: rgba(43, 160, 63, .1);
    color: #1a5c26;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.brand-title {
    font-size: clamp(28px, 5vw, 42px);
    color: #0d2e15;
    margin: 25px 0;
    line-height: 1.2;
    font-weight: 900;
}

.brand-line {
    width: 50px;
    height: 3px;
    background: #2ba03f;
    margin: 0 auto 30px;
}

.brand-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.brand-tags {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.b-tag {
    background: #fff;
    border: 1px solid #e0eee4;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: #1a5c26;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Old mv-sec styles removed — new styles added in MISSION & VISION block above */

/* ═══════════════════════════════════════════
   RESPONSIVE (Updated)
   ═══════════════════════════════════════════ */
@media(max-width:1024px) {

    .why-grid,
    .prod-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mv-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .main-nav,
    .hdr-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-wrap,
    .mv-grid,
    .contact-grid,
    .founder-wrap,
    .prod-single,
    .vid-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .about-chip {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .why-grid,
    .prod-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .mv-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-wrapper {
        height: 75vh;
        min-height: 480px;
        margin-top: 62px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.4rem);
        margin-bottom: 18px;
    }

    .sl-prev {
        left: 10px;
    }

    .sl-next {
        right: 10px;
    }

    /* Cleanup messy paddings and borders on mobile */
    .sec,
    .brand-sec,
    .mv-sec,
    .products-sec {
        padding: 45px 0;
    }

    .brand-box {
        padding: 35px 20px;
        border-radius: 20px;
        border: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .brand-title {
        font-size: 24px;
        margin: 15px 0;
    }

    .brand-desc {
        font-size: 15px;
    }

    .brand-tags {
        gap: 10px;
        margin-top: 25px;
        flex-direction: column;
    }

    .b-tag {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 12px;
    }

    .brand-bg-icon {
        font-size: 80px;
        top: -10px;
        right: -10px;
        opacity: 0.05;
    }

    .mv-header {
        margin-bottom: 30px;
    }

    .mv-title {
        font-size: 26px;
    }

    .mv-flex-grid {
        gap: 20px;
    }

    .mv-item {
        padding: 25px 20px;
        border-radius: 16px;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .why-card-clean {
        padding: 25px 20px;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .why-card-clean h3 {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .prod-clean-grid,
    .product-landscape-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .prod-card-clean,
    .prod-item {
        padding: 15px 10px;
    }

    .p-icon-box {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .cf-box {
        padding: 20px;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .oil-highlight-box {
        padding: 24px 20px;
        margin-top: 15px;
        border-width: 1px !important;
    }

    .vid-card {
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .blog-card {
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    /* Remove hover transforms so mobile scroll doesn't glitch */
    .why-card-clean:hover,
    .prod-item:hover,
    .mv-item:hover,
    .prod-card:hover,
    .blog-card:hover {
        transform: none;
    }
}

@media(max-width:480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        aspect-ratio: 16/9;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-wrapper {
        height: 80vh;
    }

    .hero-btns .btn,
    .hero-btns .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .mv-stats {
        grid-template-columns: 1fr 1fr;
    }

    .brand-title {
        font-size: 22px;
    }
}

/* Custom Additions */
.prod-2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    text-align: center;
    max-width: 900px;
    margin: 30px auto 0;
}

.prod-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--tr);
}

.prod-item-card {
    background: #fff;
    padding: 36px 30px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prod-card-link:hover .prod-item-card {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.prod-item-card h3 {
    font-size: 22px;
    color: #0d2e15;
    margin-bottom: 12px;
    font-weight: 800;
}

.prod-item-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: var(--tr);
}

.prod-card-link:hover .prod-item-photo {
    transform: scale(1.02);
}

.prod-item-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.prod-view-btn {
    display: inline-block;
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    margin-top: 18px;
    transition: .3s;
}

.prod-card-link:hover .prod-view-btn {
    padding-left: 5px;
    color: var(--green-dark);
}

@media(max-width:700px) {
    .prod-2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}