/* =========================================================
   VETIVER AGRO FARM — Premium Design System
   Version 1.0 | Natural • Pure • Sustainable
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --green-dark: #0E3A20;
    --green-mid:  #1B5E3A;
    --green-leaf: #2E8B57;
    --green-light:#58B081;
    --green-pale: #E2F3E9;
    --gold:       #B38F4D;
    --gold-light: #D9B46E;
    --gold-pale:  #FDF7EB;
    --earth:      #5C3D2E;
    --sand:       #F0ECE6;
    --cream:      #FAF8F5;
    --white:      #FFFFFF;
    --dark:       #111827;
    --text:       #1F2937;
    --text-muted: #6B7280;
    --shadow-sm:  0 2px 8px rgba(14,58,32,.08);
    --shadow-md:  0 4px 24px rgba(14,58,32,.13);
    --shadow-lg:  0 8px 48px rgba(14,58,32,.18);
    --shadow-gold:0 4px 20px rgba(179,143,77,.25);
    --transition: all .4s cubic-bezier(.25,.46,.45,.94);
    --transition-fast: all .2s ease;
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--green-dark);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
section { padding: 90px 0; }

/* ===== TYPOGRAPHY ===== */
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-pale); color: var(--green-leaf);
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 18px; border-radius: 100px;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800; color: var(--green-dark); margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
    font-size: 1rem; color: var(--text-muted);
    max-width: 600px; line-height: 1.85;
}

/* ===== BUTTONS ===== */
.btn-v-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--green-leaf), var(--green-mid));
    color: #fff; padding: 14px 32px; border-radius: 100px;
    font-weight: 600; font-size: .95rem; border: none; cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(64,145,108,.35);
}
.btn-v-primary:hover {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(64,145,108,.5);
    color: #fff;
}
.btn-v-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--green-leaf);
    padding: 13px 32px; border-radius: 100px;
    font-weight: 600; font-size: .95rem;
    border: 2px solid var(--green-leaf); cursor: pointer;
    transition: var(--transition);
}
.btn-v-outline:hover { background: var(--green-leaf); color: #fff; transform: translateY(-3px); }
.btn-v-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff; padding: 14px 32px; border-radius: 100px;
    font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
    transition: var(--transition); box-shadow: var(--shadow-gold);
}
.btn-v-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(184,134,11,.5); color: #fff; }
.btn-v-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff; padding: 14px 30px;
    border-radius: 100px; font-weight: 600; font-size: .9rem;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-v-whatsapp:hover { background: #1ebe5d; transform: translateY(-3px); color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes float       { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes leafFloat   { 0%{transform:translateY(110vh) rotate(0deg);opacity:0} 10%{opacity:.6} 90%{opacity:.3} 100%{transform:translateY(-120px) rotate(720deg);opacity:0} }
@keyframes shimmer     { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes pulse-glow  { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 35px rgba(37,211,102,.7)} }
@keyframes spin-slow   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.animate-on-scroll {
    opacity: 0; transform: translateY(35px) scale(0.96);
    transition: opacity .8s cubic-bezier(0.165, 0.84, 0.44, 1), transform .8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0) scale(1); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ===== TOPBAR ===== */
.v-topbar {
    background: #0C2B1C; /* deep dark green */
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.v-topbar a {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 22px;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.v-topbar a i {
    color: #74C69D;
    font-size: 14px;
}
.v-topbar a:hover {
    color: #74C69D;
}
.v-topbar-shipping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.v-topbar-shipping i {
    color: #74C69D;
}
.v-topbar-company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-right: 22px;
}
.v-topbar-company i {
    color: #74C69D;
}
.v-topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.v-topbar-social span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}
.v-topbar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
    transition: var(--transition-fast);
}
.v-topbar-social a:hover {
    color: #74C69D;
    transform: translateY(-1px);
}

/* ===== NAVBAR ===== */
.v-navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(27,67,50,.07);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--transition);
}
.v-navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    padding: 8px 0;
}
.v-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.v-brand-logo-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.v-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.v-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1B4332;
    letter-spacing: 1.5px;
    line-height: 0.95;
    margin: 0;
}
.v-brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #40916C;
    letter-spacing: 3px;
    line-height: 1.2;
    margin: 1px 0 2px;
    text-transform: uppercase;
}
.v-brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    color: #8E9A8C;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
.v-brand-tagline::before, .v-brand-tagline::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: #C0CBBF;
    vertical-align: middle;
}
.v-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: #1F2937 !important;
    padding: 12px 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast) !important;
    white-space: nowrap;
}
.v-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #1B4332;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.v-nav-link:hover, .v-nav-link.active {
    color: #1B4332 !important;
}
.v-nav-link:hover::after, .v-nav-link.active::after {
    transform: scaleX(1);
}
.v-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.v-btn-quote {
    background: #1B4332;
    color: #fff !important;
    padding: 11px 24px !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    text-transform: uppercase;
}
.v-btn-quote:hover {
    background: #40916C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64,145,108,.3);
}
.v-btn-quote-outline {
    background: transparent;
    color: #1B4332 !important;
    padding: 9px 22px !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid #1B4332;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v-btn-quote-outline:hover {
    background: #1B4332;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,67,50,.15);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative; display: flex;
    align-items: center; overflow: hidden;
    background: linear-gradient(135deg, #0d2818 0%, var(--green-dark) 40%, var(--green-mid) 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../img/vetiver_hero.jpg') center/cover no-repeat;
    filter: brightness(.3) saturate(1.3); z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particles .leaf { position: absolute; bottom: -60px; opacity: 0; animation: leafFloat linear infinite; }
.hero-content { position: relative; z-index: 2; padding: 130px 0 80px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.22); color: #fff;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 8px 20px; border-radius: 100px;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--gold-light); }
.hero-title {
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 10px;
}
.hero-title .gold-text {
    background: linear-gradient(135deg, var(--gold-light), #FFD700, var(--gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: shimmer 4s linear infinite;
}
.hero-sub {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: rgba(255,255,255,.78);
    margin-bottom: 18px;
}
.hero-desc { font-size: 1.02rem; color: rgba(255,255,255,.72); max-width: 540px; line-height: 1.85; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff; padding: 16px 38px; border-radius: 100px;
    font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
    transition: var(--transition); box-shadow: 0 4px 20px rgba(184,134,11,.42);
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(184,134,11,.6); color: #fff; }
.hero-btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
    color: #fff; padding: 16px 38px; border-radius: 100px;
    font-weight: 600; font-size: 1rem;
    border: 1px solid rgba(255,255,255,.3); cursor: pointer;
    transition: var(--transition);
}
.hero-btn-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); color: #fff; }
.hero-btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff; padding: 16px 32px;
    border-radius: 100px; font-weight: 600; font-size: 1rem;
    border: none; cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,.4);
}
.hero-btn-wa:hover { background: #1ebe5d; transform: translateY(-3px); color: #fff; box-shadow: 0 8px 25px rgba(37,211,102,.55); }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-feat-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18); color: #fff;
    padding: 9px 18px; border-radius: 100px; font-size: .84rem; font-weight: 500;
}
.hero-feat-badge i { color: var(--gold-light); }
.hero-img-col { position: relative; z-index: 2; padding: 130px 0 80px; display: flex; align-items: center; justify-content: center; }
.hero-card {
    background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg);
    padding: 24px; max-width: 420px; width: 100%;
    animation: float 7s ease-in-out infinite;
}
.hero-card img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-md); }
.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.hero-stat {
    background: rgba(255,255,255,.12); border-radius: var(--radius-sm);
    padding: 12px; text-align: center;
}
.hero-stat .num {
    font-family: 'Playfair Display', serif; font-size: 1.6rem;
    font-weight: 800; color: #fff; line-height: 1;
}
.hero-stat .num sup { font-size: .9rem; color: var(--gold-light); }
.hero-stat .lbl { font-size: .7rem; color: rgba(255, 255, 255, 0.65); margin-top: 2px; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--green-dark); padding: 52px 0; }
.stat-item { text-align: center; padding: 10px 24px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 2rem; color: var(--green-light); margin-bottom: 8px; display: block; }
.stat-num {
    font-family: 'Playfair Display', serif; font-size: 2.8rem;
    font-weight: 800; color: #fff; line-height: 1; display: block;
}
.stat-num .suf { color: var(--gold-light); }
.stat-lbl {
    font-size: .8rem; color: rgba(255,255,255,.6);
    text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; display: block;
}

/* ===== ABOUT ===== */
.about-section { background: var(--cream); }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-exp-badge {
    position: absolute; bottom: -26px; right: -20px;
    background: var(--green-dark); color: #fff;
    padding: 22px 28px; border-radius: var(--radius-md);
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-exp-badge .num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.about-exp-badge .lbl { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.about-feat {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px; background: #fff; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.about-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-feat-icon {
    width: 44px; height: 44px; background: var(--green-pale);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 20px; color: var(--green-leaf); flex-shrink: 0;
}
.about-feat-text h6 { font-size: .88rem; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; font-family: 'Inter', sans-serif; }
.about-feat-text p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ===== PRODUCTS ===== */
.products-section { background: var(--sand); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
    padding: 9px 22px; border-radius: 100px; font-size: .85rem;
    font-weight: 600; border: 2px solid var(--green-pale);
    background: #fff; color: var(--text-muted); cursor: pointer;
    transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--green-leaf); color: #fff; border-color: var(--green-leaf);
}
.product-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; overflow: hidden; height: 230px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.09); }
.product-cat-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--green-dark); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.product-overlay {
    position: absolute; bottom: -70px; left: 0; right: 0;
    display: flex; gap: 8px; padding: 14px; justify-content: center;
    background: linear-gradient(0deg, rgba(27,67,50,.92) 0%, transparent 100%);
    transition: var(--transition); padding-top: 36px;
}
.product-card:hover .product-overlay { bottom: 0; }
.product-body { padding: 20px 22px 24px; }
.product-name { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.product-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.product-tag {
    background: var(--green-pale); color: var(--green-leaf);
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}
.product-actions { display: flex; gap: 8px; }
.btn-inq {
    flex: 1; padding: 9px 10px; border-radius: 8px; font-size: .8rem;
    font-weight: 600; text-align: center; cursor: pointer; border: none;
    transition: var(--transition-fast);
}
.btn-inq.green { background: var(--green-leaf); color: #fff; }
.btn-inq.green:hover { background: var(--green-dark); color: #fff; }
.btn-inq.wa { background: #25D366; color: #fff; }
.btn-inq.wa:hover { background: #1ebe5d; color: #fff; }

/* ===== APPLICATIONS ===== */
.applications-section { background: var(--cream); }
.app-card {
    background: #fff; border-radius: var(--radius-lg); padding: 30px 22px;
    text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 2px solid transparent; height: 100%;
}
.app-card:hover { border-color: var(--green-leaf); transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--green-dark); }
.app-icon {
    width: 72px; height: 72px; background: var(--green-pale); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: var(--green-leaf); margin: 0 auto 18px; transition: var(--transition);
}
.app-card:hover .app-icon { background: rgba(255,255,255,.12); color: var(--gold-light); }
.app-title { font-size: .95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; font-family: 'Inter', sans-serif; transition: var(--transition); }
.app-card:hover .app-title { color: #fff; }
.app-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin: 0; transition: var(--transition); }
.app-card:hover .app-desc { color: rgba(255,255,255,.72); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--green-dark); position: relative; overflow: hidden; }
.why-section::before {
    content: ''; position: absolute; top: -50%; right: -8%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(116,198,157,.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.why-feat { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.why-feat:last-child { margin-bottom: 0; }
.why-icon {
    width: 56px; height: 56px; background: rgba(116,198,157,.14);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--green-light); flex-shrink: 0;
}
.why-text h5 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-text p { font-size: .86rem; color: rgba(255,255,255,.62); margin: 0; line-height: 1.75; }
.why-img-wrap { position: relative; height: 100%; display: flex; align-items: center; }
.why-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.why-cert-badge {
    position: absolute; top: 24px; right: -16px;
    background: var(--gold); color: #fff; padding: 16px 20px;
    border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-gold);
}
.why-cert-badge i { font-size: 1.8rem; margin-bottom: 4px; display: block; }
.why-cert-badge span { font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--sand); }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gallery-filter-btn {
    padding: 8px 20px; border-radius: 100px; font-size: .83rem;
    font-weight: 600; border: 2px solid var(--green-pale);
    background: #fff; color: var(--text-muted); cursor: pointer;
    transition: var(--transition-fast);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: var(--green-leaf); color: #fff; border-color: var(--green-leaf);
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto; gap: 14px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; transition: transform .5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,.72), rgba(64,145,108,.5));
    opacity: 0; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2.2rem; color: #fff; transform: scale(.4); transition: var(--transition); }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--green-mid); position: relative; overflow: hidden; }
.testimonials-section::before {
    content: '\201C'; position: absolute; top: -40px; left: 4%;
    font-family: 'Playfair Display', serif; font-size: 22rem;
    color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.testi-card {
    background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
    padding: 36px; margin: 14px;
}
.testi-stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 14px; }
.testi-text { font-size: .97rem; color: rgba(255,255,255,.9); font-style: italic; line-height: 1.85; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--green-light); display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
    color: var(--green-dark); flex-shrink: 0;
}
.testi-name { font-weight: 700; color: #fff; font-family: 'Inter', sans-serif; margin-bottom: 2px; }
.testi-role { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ===== BLOG ===== */
.blog-section { background: var(--cream); }
.blog-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { position: relative; overflow: hidden; height: 210px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-cat {
    position: absolute; top: 14px; left: 14px; background: var(--gold);
    color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-meta i { color: var(--green-leaf); }
.blog-title { font-size: 1.08rem; font-weight: 700; color: var(--green-dark); margin-bottom: 9px; line-height: 1.4; transition: var(--transition-fast); }
.blog-card:hover .blog-title { color: var(--green-leaf); }
.blog-excerpt { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; color: var(--green-leaf); font-weight: 600; font-size: .86rem; transition: var(--transition-fast); }
.blog-readmore:hover { color: var(--green-dark); gap: 10px; }

/* ===== CTA BANNER ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    position: relative; overflow: hidden; padding: 80px 0;
}
.cta-section::before {
    content: ''; position: absolute; top: -60%; right: -5%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(116,198,157,.14) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

/* ===== CONTACT ===== */
.contact-section { background: var(--sand); }
.contact-info-card {
    background: var(--green-dark); border-radius: var(--radius-lg);
    padding: 40px; color: #fff; height: 100%;
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-ico {
    width: 48px; height: 48px; background: rgba(116,198,157,.14);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--green-light); flex-shrink: 0;
}
.contact-txt h6 { font-family: 'Inter', sans-serif; font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; }
.contact-txt p, .contact-txt a { font-size: .92rem; color: rgba(255,255,255,.88); margin: 0; line-height: 1.6; }
.contact-txt a:hover { color: var(--gold-light); }
.contact-form-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-md);
}
.form-lbl { font-size: .83rem; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; display: block; }
.form-inp {
    width: 100%; padding: 12px 16px;
    border: 2px solid var(--sand); border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text);
    background: var(--cream); transition: var(--transition-fast); outline: none;
    margin-bottom: 18px;
}
.form-inp:focus { border-color: var(--green-leaf); background: #fff; box-shadow: 0 0 0 3px rgba(64,145,108,.1); }
.form-inp::placeholder { color: var(--text-muted); }
textarea.form-inp { resize: vertical; min-height: 120px; }
select.form-inp { cursor: pointer; }

/* ===== FOOTER ===== */
.v-footer { background: var(--green-dark); color: rgba(255,255,255,.75); padding-top: 80px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.footer-brand-tag { color: var(--gold-light); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.footer-desc { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.85; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: 16px; transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-heading {
    font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 800;
    color: #fff; text-transform: uppercase; letter-spacing: 1.8px;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 2px solid var(--gold); display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: .86rem; transition: var(--transition-fast); display: flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 11px; color: var(--green-light); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-row i { color: var(--green-light); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row span { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-newsletter { margin-top: 8px; }
.footer-newsletter input {
    width: 100%; padding: 11px 16px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-sm); color: #fff; font-size: .86rem;
    outline: none; margin-bottom: 10px; transition: var(--transition-fast);
}
.footer-newsletter input:focus { border-color: var(--green-light); background: rgba(255,255,255,.12); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.38); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0; text-align: center;
    font-size: .82rem; color: rgba(255,255,255,.4); margin-top: 60px;
}
.footer-bottom a { color: var(--gold-light); }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.floating-wa-btn {
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--transition);
    animation: pulse-glow 2.5s ease-in-out infinite;
}
.floating-wa-btn:hover { transform: scale(1.15); color: #fff; animation: none; box-shadow: 0 8px 30px rgba(37,211,102,.65); }
.floating-wa-tip {
    background: var(--green-dark); color: #fff; padding: 8px 14px;
    border-radius: 8px; font-size: .8rem; font-weight: 500; white-space: nowrap;
    opacity: 0; pointer-events: none; position: absolute; right: 70px;
    bottom: 50%; transform: translateY(50%) translateX(8px);
    transition: var(--transition-fast);
}
.floating-wa-tip::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-right: none; border-left-color: var(--green-dark);
}
.floating-wa:hover .floating-wa-tip { opacity: 1; transform: translateY(50%) translateX(0); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 100px; right: 28px;
    width: 44px; height: 44px; background: var(--green-mid); border-radius: 12px;
    display: none; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; cursor: pointer; z-index: 9998;
    transition: var(--transition); box-shadow: var(--shadow-md); text-decoration: none;
}
.back-to-top:hover { background: var(--green-dark); color: #fff; transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.92);
    z-index: 99999; display: none; align-items: center;
    justify-content: center; padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px; width: 44px; height: 44px;
    background: rgba(255,255,255,.12); border: none; border-radius: 50%;
    color: #fff; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 120px 0 70px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('../img/vetiver_hero.jpg') center/cover no-repeat;
    opacity: .1; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 14px; }
.page-hero-content p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb-v { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .88rem; margin-top: 14px; }
.breadcrumb-v a { color: rgba(255,255,255,.6); transition: var(--transition-fast); }
.breadcrumb-v a:hover { color: var(--gold-light); }
.breadcrumb-v .sep { color: rgba(255,255,255,.32); }
.breadcrumb-v .cur { color: var(--gold-light); font-weight: 600; }

/* ===== PRODUCTS BY CATEGORY ===== */
.cat-products-section {
    background: #FFF;
    padding: 85px 0 70px;
    border-bottom: 1px solid #F0ECE6;
}
.cat-heading-wrap {
    text-align: center;
    margin-bottom: 50px;
}
.cat-section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #40916C;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.cat-section-subtitle::before, .cat-section-subtitle::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #74C69D;
}
.cat-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 750;
    color: #1B4332;
    margin-bottom: 16px;
}
.cat-title-underline {
    width: 60px;
    height: 3px;
    background: #40916C;
    margin: 0 auto;
}
.cat-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cat-card {
    background: #FCFAF7;
    border: 1px solid #EAE6DF;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(27,67,50,.07);
    border-color: #74C69D;
}
.cat-card-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.cat-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-img-wrap img {
    transform: scale(1.05);
}
.cat-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.cat-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 8px;
}
.cat-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.cat-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #40916C !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.cat-card:hover .cat-card-link {
    color: #1B4332 !important;
    gap: 10px;
}

/* ===== FARMER SUPPORT SECTION ===== */
.farmer-support-section {
    background: #FCFAF7;
    padding: 85px 0;
    border-top: 1px solid #F0ECE6;
    border-bottom: 1px solid #F0ECE6;
}
.farmer-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.support-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #EAE6DF;
    height: 100%;
}
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #74C69D;
}
.support-icon {
    width: 58px;
    height: 58px;
    background: #EAF2EB;
    color: #40916C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.support-card:hover .support-icon {
    background: #1B4332;
    color: #fff;
}
.support-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 10px;
}
.support-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE & MOBILE RULES ===== */
@media (max-width: 1199.98px) {
    .hero-image-side {
        width: 45%;
    }
    .v-nav-link {
        padding: 12px 8px !important;
        font-size: 0.78rem !important;
    }
    .v-nav-link::after {
        left: 8px !important;
        right: 8px !important;
    }
    .v-btn-quote {
        padding: 10px 18px !important;
        font-size: 0.8rem;
    }
    .v-btn-quote-outline {
        padding: 8px 16px !important;
        font-size: 0.8rem;
    }
    .v-brand-title {
        font-size: 1.2rem;
    }
    .v-brand-subtitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 991.98px) {
    section { padding: 60px 0; }
    
    /* Sliding Mobile Drawer Menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0,0,0,.12);
        z-index: 1060;
        padding: 80px 24px 40px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
    }
    .navbar-collapse.show {
        right: 0;
    }
    .navbar-collapse.collapsing {
        right: -300px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
        height: 100vh !important;
    }
    .navbar-nav {
        flex-direction: column;
    }
    .v-nav-link {
        padding: 14px 0 !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid #f3f4f6;
    }
    .v-nav-link::after {
        display: none !important;
    }
    .v-nav-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 24px;
        gap: 12px;
    }
    .v-btn-quote, .v-btn-quote-outline {
        width: 100%;
        text-align: center;
        padding: 13px !important;
    }
    .mobile-menu-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: transparent;
        border: none;
        font-size: 22px;
        color: #1B4332;
        cursor: pointer;
        display: block;
    }
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1055;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .mobile-menu-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-right: 12px;
    }
    .mobile-nav-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        transition: var(--transition-fast);
    }
    .mobile-nav-btn.phone {
        background: #1B4332;
    }
    .mobile-nav-btn.whatsapp {
        background: #25D366;
    }
    .mobile-nav-btn:hover {
        transform: scale(1.05);
        color: #fff;
    }

    /* Hero Responsive */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-content {
        padding: 20px 0 30px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    .hero-btn-primary, .hero-btn-outline, .hero-btn-wa {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    .hero-features {
        gap: 10px;
        justify-content: flex-start;
    }
    .hero-feat-badge {
        flex: 0 0 calc(50% - 5px);
        justify-content: center;
        font-size: 0.78rem;
        padding: 8px 10px;
    }
    .hero-img-col {
        padding: 20px 0 0;
    }
    .hero-card {
        margin: 0 auto;
        max-width: 380px;
        padding: 18px;
    }
    .hero-card img {
        height: 220px;
    }
    .hero-card-stats {
        gap: 8px;
        margin-top: 10px;
    }
    .hero-stat {
        padding: 10px;
    }
    .hero-stat .num {
        font-size: 1.4rem;
    }

    /* General Grids */
    .cat-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .farmer-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .about-exp-badge { right: 0; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px; margin-bottom: 20px; }
    .stat-item:last-child { border-bottom: none; }
    .about-feats { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    /* Touch optimization */
    .btn-v-primary, .btn-v-outline, .btn-v-gold, .btn-v-whatsapp {
        padding: 15px 28px;
        width: 100%;
        justify-content: center;
    }
    .form-inp {
        padding: 14px 18px;
        font-size: 1rem;
    }
    .form-lbl {
        font-size: 0.9rem;
    }
    
    /* Mobile products slider */
    .row.mobile-slider-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 25px;
        margin-left: -15px;
        margin-right: -15px;
        -webkit-overflow-scrolling: touch;
    }
    .row.mobile-slider-row::-webkit-scrollbar {
        height: 6px;
    }
    .row.mobile-slider-row::-webkit-scrollbar-thumb {
        background-color: rgba(27,67,50,0.15);
        border-radius: 10px;
    }
    .row.mobile-slider-row > [class*='col-'] {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .contact-form-card, .contact-info-card { padding: 28px 20px; }
    .floating-wa { bottom: 18px; right: 18px; }
    .about-exp-badge { position: static; margin-top: 16px; display: inline-block; }
}

@media (max-width: 575.98px) {
    .v-topbar { display: none; }
    
    .cat-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .farmer-support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero-badge-item {
        flex: 0 0 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 14px;
    }
    .badge-icon-circle {
        margin-bottom: 0;
    }
    .cat-section-title {
        font-size: 1.75rem;
    }
}

/* ====== SERVICE OFFER CARDS & ANIMATIONS ====== */
.service-offer-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid #EAE6DF;
    height: 100%;
    position: relative;
    overflow: hidden;
}
/* Shimmer glass sweep effect */
.service-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
    pointer-events: none;
}
.service-offer-card:hover::before {
    left: 150%;
    transition: left 0.75s ease-in-out;
}
.service-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(12, 43, 28, 0.08);
    border-color: var(--green-leaf);
}
.service-offer-icon {
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    color: var(--green-leaf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.service-offer-card:hover .service-offer-icon {
    background: var(--green-dark);
    color: var(--gold-light);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 5px 15px rgba(12, 43, 28, 0.15);
}
.service-offer-text {
    flex: 1;
}
.service-offer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
    margin-top: 0;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}
.service-offer-title::after {
    content: ' \2192'; /* Unicode arrow */
    opacity: 0;
    display: inline-block;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--gold-light);
    font-weight: bold;
}
.service-offer-card:hover .service-offer-title {
    color: var(--green-leaf);
    transform: translateX(4px);
}
.service-offer-card:hover .service-offer-title::after {
    opacity: 1;
    transform: translateX(6px);
}
.service-offer-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

