/* ================================================
   JAI AGRO FRESH — B2B PAGES SHARED STYLESHEET
   Premium forest-green · Apple-style · Mobile-first
   ================================================ */

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

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F8F6F2;
    color: #111827;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 80px; /* nav height */
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ---- TOKENS ---- */
:root {
    --bg:          #F8F6F2;
    --bg-white:    #FFFFFF;
    --bg-section:  #F1EDE6;
    --primary:     #1B3A28;
    --primary-lt:  #2E5A3E;
    --accent:      #3D6B50;
    --gold:        #C9A84C;
    --gold-bg:     #F9F2DF;
    --text:        #111827;
    --body:        #374151;
    --muted:       #6B7280;
    --border:      rgba(0,0,0,0.09);
    --shadow:      0 4px 24px rgba(0,0,0,0.06);
    --shadow-h:    0 16px 48px rgba(0,0,0,0.13);
    --r-sm:        12px;
    --r:           20px;
    --r-lg:        32px;
}

/* ================================================
   NAV
   ================================================ */
.b2b-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(248,246,242,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.b2b-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.75rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.b2b-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}
.b2b-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
}
.b2b-nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.b2b-nav-links a:hover,
.b2b-nav-links a.active { color: var(--primary); font-weight: 600; }
.b2b-nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 9px 20px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s cubic-bezier(.16,1,.3,1);
    flex-shrink: 0;
}
.b2b-nav-cta:hover { background: var(--primary-lt); transform: scale(.97); }

/* Mobile pill strip */
.b2b-pill-strip {
    display: none;
    gap: 8px;
    padding: 0 1rem 10px;
    overflow-x: auto;
    scrollbar-width: none;
    background: rgba(248,246,242,0.92);
}
.b2b-pill-strip::-webkit-scrollbar { display: none; }
.b2b-pill-strip a {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 500;
    color: var(--body);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    background: var(--bg-white);
    transition: all .2s;
}
.b2b-pill-strip a:hover,
.b2b-pill-strip a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Mobile nav */
.b2b-mobile-cta { display: none; }
@media (max-width: 900px) {
    .b2b-nav-links { display: none; }
    .b2b-nav-cta.hide-mobile { display: none; }
    .b2b-mobile-cta {
        display: inline-flex;
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        background: var(--primary);
        padding: 8px 16px;
        border-radius: 999px;
        text-decoration: none;
    }
    .b2b-pill-strip { display: flex; }
    body { padding-top: 104px; }
}

/* ================================================
   PAGE HERO
   ================================================ */
.page-hero {
    padding: 80px 2rem 80px;
    text-align: center;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.page-hero.hero-green {
    background: linear-gradient(140deg, #0E2118 0%, #1B3A28 55%, #2C5540 100%);
    color: #fff;
    border-bottom: none;
}
.page-hero.hero-amber {
    background: linear-gradient(140deg, #451A03 0%, #92400E 55%, #B45309 100%);
    color: #fff;
    border-bottom: none;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-bg);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hero-green .hero-tag,
.hero-amber .hero-tag { background: rgba(201,168,76,.15); }
.page-hero h1 {
    font-size: clamp(30px, 6vw, 68px);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.08;
    max-width: 880px;
    margin: 0 auto 1.25rem;
    color: inherit;
}
.page-hero p.hero-desc {
    font-size: clamp(15px, 2.2vw, 19px);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    font-weight: 400;
}
.hero-green p.hero-desc,
.hero-amber p.hero-desc { color: rgba(255,255,255,.65); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   BUTTONS
   ================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600;
    padding: 14px 26px; border-radius: 999px; text-decoration: none; cursor: pointer;
    border: none; transition: all .4s cubic-bezier(.16,1,.3,1); line-height: 1; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-lt); transform: scale(.97); }

.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: scale(.97); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: scale(.97); }

.btn-whatsapp { background: #16A34A; color: #fff; }
.btn-whatsapp:hover { background: #15803D; transform: scale(.97); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.section    { padding: 100px 2rem; }
.section-sm { padding: 70px 2rem; }
.bg-white   { background: var(--bg-white); }
.bg-cream   { background: var(--bg); }
.bg-section { background: var(--bg-section); }
.bg-green   { background: var(--primary); color: #fff; }
.bg-dark    { background: #0D1F14; color: #fff; }

.container    { max-width: 1160px; margin: 0 auto; width: 100%; }
.container-sm { max-width: 760px;  margin: 0 auto; }
.container-md { max-width: 960px;  margin: 0 auto; }

.text-center { text-align: center; }
.text-white  { color: #fff; }

@media (max-width: 768px) { 
    .section { padding: 50px 1.5rem; } 
    .section-sm { padding: 32px 1.5rem; } 
    .page-hero { padding: 50px 1.5rem; }
    .b2b-footer { padding: 4rem 1.5rem 2rem; }
    .location-spotlight { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
    .section { padding: 40px 1.25rem; }
    .section-sm { padding: 24px 1.25rem; }
    .page-hero { padding: 40px 1.25rem; }
    .b2b-footer { padding: 3rem 1.25rem 1.5rem; }
    .location-spotlight { padding: 3.5rem 1.25rem; }
    .organic-hero { padding: 80px 1.25rem; }
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
.label {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    color: var(--accent); margin-bottom: .875rem;
}
.label.light { color: rgba(255,255,255,.55); }
.label.gold  { color: var(--gold); }

.section-title {
    font-size: clamp(24px, 4.5vw, 48px);
    font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.1rem;
}
.section-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--muted); line-height: 1.7; font-weight: 400; max-width: 640px;
}
.section-desc.light { color: rgba(255,255,255,.65); }

/* ================================================
   CARDS
   ================================================ */
.card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--r); padding: 2rem;
    transition: all .5s cubic-bezier(.16,1,.3,1);
}
.card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); border-color: rgba(27,58,40,.18); }
.card.dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); color: #fff; }
.card.dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }

/* Grid systems */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

@media (max-width: 1024px) { 
    .grid-4 { grid-template-columns: repeat(2,1fr); } 
    .grid-3 { grid-template-columns: repeat(2,1fr); } 
}
@media (max-width: 640px) { 
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } 
    [style*="grid-column"] { grid-column: span 1 !important; }
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all .5s cubic-bezier(.16,1,.3,1);
}
.product-card:hover { box-shadow: var(--shadow-h); transform: translateY(-6px); }
.product-emoji-zone {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 88px; position: relative; overflow: hidden;
}
.emoji-red    { background: radial-gradient(circle at 50% 60%, rgba(185,28,28,.12), transparent 70%); }
.emoji-yellow { background: radial-gradient(circle at 50% 60%, rgba(202,138,4,.12),  transparent 70%); }
.emoji-green  { background: radial-gradient(circle at 50% 60%, rgba(22,163,74,.12),  transparent 70%); }
.emoji-earth  { background: radial-gradient(circle at 50% 60%, rgba(79,120,74,.15),  transparent 70%); }
.product-card-body { padding: 1.75rem; }
.product-badge {
    font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: .75rem;
}
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-yellow { background: #FEF9C3; color: #713F12; }
.badge-green  { background: #DCFCE7; color: #166534; }
.badge-earth  { background: #D1FAE5; color: #1B3A28; }
.product-name { font-size: 22px; font-weight: 700; margin-bottom: .4rem; }
.product-sub  { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 1.25rem; }
.spec-list   { list-style: none; }
.spec-list li {
    font-size: 13px; color: var(--body); padding: 7px 0;
    border-bottom: 1px solid var(--border); display: flex; justify-content: space-between;
}
.spec-list li:last-child { border: none; }
.spec-key { color: var(--muted); }

/* ================================================
   STATS / NUMBERS
   ================================================ */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--border);
    gap: 1px;
    margin-top: 3rem;
}
@media (max-width: 640px) { .stats-band { grid-template-columns: repeat(2,1fr); } }
.stat-cell    { background: var(--bg-white); padding: 2.5rem 1.5rem; text-align: center; }
.stat-num     { font-size: clamp(40px, 5vw, 60px); font-weight: 700; color: var(--primary); letter-spacing: -.04em; line-height: 1; margin-bottom: .4rem; }
.stat-txt     { font-size: 13px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 3rem; }
.step { padding: 2rem 1.5rem; text-align: center; position: relative; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }
.step-num {
    width: 48px; height: 48px; background: var(--primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; margin: 0 auto 1rem;
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: .4rem; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.step.dark .step-title { color: #fff; }
.step.dark .step-desc  { color: rgba(255,255,255,.55); }
.steps-row.dark { background: rgba(255,255,255,.03); border-radius: var(--r); border: 1px solid rgba(255,255,255,.07); }
.steps-row.dark .step { border-color: rgba(255,255,255,.07); }
@media (max-width: 640px) { .steps-row { grid-template-columns: 1fr; } .step { border-right: none; border-bottom: 1px solid var(--border); } }

/* ================================================
   HIGHLIGHT STRIP
   ================================================ */
.hl-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--primary); }
@media (max-width: 640px) { .hl-strip { grid-template-columns: repeat(2, 1fr); } }
.hl-item {
    padding: 2.25rem 1.5rem; text-align: center; color: #fff;
    border-right: 1px solid rgba(255,255,255,.1);
}
.hl-item:last-child { border-right: none; }
.hl-icon  { font-size: 30px; margin-bottom: .6rem; }
.hl-title { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.hl-sub   { font-size: 12px; color: rgba(255,255,255,.55); }

/* ================================================
   URGENCY / TRUST BARS
   ================================================ */
.urgency-bar {
    background: linear-gradient(90deg, #92400E, #B45309);
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.urgency-bar a { color: #FDE68A; }
.trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 2.5rem; flex-wrap: wrap; padding: 1.5rem 2rem;
    background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--body); }
.trust-dot  { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ================================================
   BENEFIT PILLS
   ================================================ */
.benefit-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 2rem; }
.benefit-pill {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500;
    color: var(--primary); background: #E8F3ED;
    padding: 10px 20px; border-radius: 999px;
    border: 1px solid rgba(27,58,40,.15);
}

/* ================================================
   FORMS
   ================================================ */
.form-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 3rem;
    box-shadow: var(--shadow);
}
@media (max-width: 640px) { .form-card { padding: 1.75rem 1.25rem; } }
.form-grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-group      { display: flex; flex-direction: column; gap: 5px; }
.form-group.span { grid-column: 1 / -1; }
.form-label {
    font-size: 11px; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: var(--muted);
}
.form-input, .form-select, .form-textarea {
    width: 100%; background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px; padding: 13px 16px;
    font-size: 15px; font-family: inherit;
    color: var(--text); outline: none; transition: all .25s;
    -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary); background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(27,58,40,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: #9CA3AF; }
.form-textarea { resize: vertical; min-height: 110px; }

/* Table Wrapper for Horizontal Scroll */
.table-container { 
    width: 100%; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}
.table-container table { min-width: 600px; }

/* ================================================
   CONTACT CARDS
   ================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem 1.5rem; text-align: center; transition: all .4s cubic-bezier(.16,1,.3,1); }
.contact-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.contact-icon { width: 56px; height: 56px; background: var(--gold-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 1rem; }
.contact-card-title { font-size: 16px; font-weight: 700; margin-bottom: .5rem; }
.contact-card-val   { font-size: 14px; color: var(--muted); line-height: 1.65; }
.contact-card-val a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* ================================================
   FAQ
   ================================================ */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
    width: 100%; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 16px; font-weight: 600; color: var(--text);
    padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; text-align: left;
}
.faq-icon { color: var(--accent); font-size: 22px; transition: transform .3s; flex-shrink: 0; }
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 15px; color: var(--muted); max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); line-height: 1.65; }
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }

/* ================================================
   FOOTER
   ================================================ */
.b2b-footer { background: #0D1F14; color: rgba(255,255,255,.65); padding: 5rem 2rem 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-brand-txt { font-size: 13px; line-height: 1.65; max-width: 240px; }
.footer-col-head { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy   { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-credit { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-credit a { color: rgba(255,255,255,.3); text-decoration: underline; }

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.wa-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    width: 58px; height: 58px;
    background: #22C55E;
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(34,197,94,.45);
    text-decoration: none;
    transition: all .35s cubic-bezier(.16,1,.3,1);
}
.wa-fab:hover { transform: scale(1.13); box-shadow: 0 8px 36px rgba(34,197,94,.55); }
.wa-fab svg { width: 30px; height: 30px; }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.active { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    background: var(--primary);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 1rem; }
.cta-banner p  { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 2rem; }

/* ================================================
   SUPPLY DETAIL GRID
   ================================================ */
.detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1.75rem; }
.detail-key  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.detail-val  { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.detail-note { font-size: 13px; color: rgba(255,255,255,.5); }

/* ================================================
   WHO WE SUPPLY
   ================================================ */
.supply-who { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 2rem; }
.supply-pill {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--primary);
    background: var(--bg-white); border: 1.5px solid rgba(27,58,40,.15);
    padding: 12px 22px; border-radius: 999px;
}

/* ================================================
   MISC UTILITIES
   ================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
@media (max-width: 768px) { .mt-6 { margin-top: 2rem; } .mt-4 { margin-top: 1.5rem; } }
.mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; }
.gap-3 { gap: 1.5rem; }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }

.premium-padding { padding: 4rem 3rem; }
@media (max-width: 768px) { .premium-padding { padding: 3rem 2rem; } }
@media (max-width: 480px) { .premium-padding { padding: 2.5rem 1.5rem; } }


/* ================================================
   ORGANIC USP PAGE STYLES
   ================================================ */

.organic-hero {
    position: relative;
    padding: 140px 2rem;
    background: #0D1F14;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.organic-hero-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.organic-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.journey-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 8rem 0;
}

.journey-row:nth-child(even) { grid-template-columns: 1fr 1.1fr; }
.journey-row:nth-child(even) .journey-image-wrapper { order: 2; }

.journey-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-h);
}

.journey-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    background: #E8F3ED;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.journey-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.journey-text {
    font-size: 17px;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.journey-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    padding: 0;
}

.journey-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--body);
}

.journey-list li::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .journey-row, .journey-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 5rem 0;
    }
    .journey-row:nth-child(even) .journey-image-wrapper { order: 0; }
    .organic-hero { padding: 100px 1.5rem; }
}

/* ================================================
   TRUST FOOTER BAR
   ================================================ */
.trust-footer-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem;
}
.trust-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.trust-footer-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.trust-footer-icon {
    font-size: 32px;
    margin-bottom: 0.25rem;
}
.trust-footer-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
}
@media (max-width: 768px) {
    .trust-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .trust-footer-inner { grid-template-columns: 1fr; }
    .trust-footer-bar { padding: 2.5rem 1.25rem; }
}

/* ================================================
   REVEAL ANIMATIONS (SCROLL)
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Delay modifiers */
/* ================================================
   LOCATION SPOTLIGHT (ROHRU HEARTLAND)
   ================================================ */
.location-spotlight {
    background: #0a0a0a;
    padding: 8rem 2rem;
    overflow: hidden;
    position: relative;
}
.location-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.map-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
}
.location-spotlight.active .map-img {
    transform: scale(1) translate(-2%, -5%); /* Localized Zoom Feel */
}
.map-pin {
    position: absolute;
    top: 55%; /* Estimated Rohru Pos on stylized map */
    left: 48%;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(220, 180, 50, 0.4);
    animation: pulse 2s infinite;
    z-index: 10;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 180, 50, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(220, 180, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 180, 50, 0); }
}

.montage-view {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.montage-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.location-spotlight.active .montage-card {
    opacity: 1;
    transform: translateX(0);
}
.montage-card.d1 { transition-delay: 0.8s; }
.montage-card.d2 { transition-delay: 1.2s; }

.montage-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.montage-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .location-spotlight { padding: 5rem 1.5rem; }
}

/* ================================================
   PREMIUM HOVER EFFECTS
   ================================================ */
.card, .product-card, .detail-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.card:hover, .product-card:hover, .detail-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.btn:active { transform: scale(0.96) !important; }

/* --- Brochure & Utility --- */
.spinner-sm {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: b2b-spin 0.8s linear infinite;
}

@keyframes b2b-spin {
    to { transform: rotate(360deg); }
}

[onclick="downloadBrochure()"]:active {
    transform: scale(0.96);
    opacity: 0.8;
}

/* ================================================
   CIRCLE VIDEOS (ABOUT PAGE)
   ================================================ */
.video-circle-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.video-circle-wrap:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}
.video-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 640px) {
    .video-circle-wrap {
        width: 140px;
        height: 140px;
    }
}
