/*
Theme Name: Urban Villager
Theme URI: http://localhost/urban-villager
Author: Urban Villager Team
Author URI: http://localhost/urban-villager
Description: Pure, naturally grown farm produce with 100% traceable stories from our farm in Mehsana to your kitchen.
Version: 1.0.0
Text Domain: urban-villager
*/

/* ==========================================================================
   URBAN VILLAGER BRAND STYLESHEET
   Aesthetics: Warm Cream, Forest Green, Organic Sage, Gold Accents
   ========================================================================== */

/* --- CSS Variables / Design System --- */
:root {
    --bg-cream: #FDFBF7;
    --bg-light: #F6F3EC;
    --primary-green: #1E352C;
    --sage-green: #4E8752;
    --accent-gold: #E5A93B;
    --text-dark: #2C2C2C;
    --text-muted: #5A605B;
    --white: #FFFFFF;
    --border-color: rgba(30, 53, 44, 0.1);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 30px rgba(30, 53, 44, 0.06);
    --shadow-lg: 0 20px 50px rgba(30, 53, 44, 0.12);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

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

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, .signature-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-green);
}

.signature-font {
    font-family: 'Mr De Haviland', cursive;
    font-size: 3.8rem;
    font-weight: 400 !important;
    color: var(--sage-green) !important;
    transform: rotate(-3deg);
    display: inline-block;
    letter-spacing: 1px;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage-green);
    margin-bottom: 12px;
}

.sub-heading i {
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-green);
}

.text-white {
    color: var(--white) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--sage-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 53, 44, 0.25);
}

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

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

/* Specific styling for outline buttons on light backgrounds */
section:not(.bg-dark):not(.hero-section):not(.cta-section) .btn-outline {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

section:not(.bg-dark):not(.hero-section):not(.cta-section) .btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Transparent backing with blur for buttons on dark backgrounds (Hero & CTA) to solve readability issues */
.hero-section .btn-outline,
.cta-section .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white) !important;
}

.hero-section .btn-outline:hover,
.cta-section .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-green) !important;
    border-color: var(--white);
}

.btn-text-link {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    color: var(--sage-green);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    padding: 5px 0;
}

.btn-text-link i {
    transition: transform var(--transition-fast);
}

.btn-text-link:hover {
    color: var(--primary-green);
}

.btn-text-link:hover i {
    transform: translateX(5px);
}


/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important;
    background-color: rgba(253, 251, 247, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.header-container {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.25vw, 1.3rem);
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.logo-link:hover .logo-text {
    color: var(--sage-green);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.1vw, 20px);
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.main-nav a {
    font-size: clamp(0.82rem, 0.85vw, 0.92rem);
    font-weight: 500;
    color: var(--text-dark);
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sage-green);
    transition: var(--transition-normal);
}

.main-nav a:hover,
.main-nav a.active,
.main-nav li.current-menu-item > a,
.main-nav li.current_page_item > a,
.main-nav li.current-page-ancestor > a {
    color: var(--sage-green);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav li.current-menu-item > a::after,
.main-nav li.current_page_item > a::after,
.main-nav li.current-page-ancestor > a::after {
    width: 100%;
}

.mobile-nav-cta {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Hide bulky header button on medium/laptop screens so navigation never breaks or wraps */
@media (max-width: 1320px) {
    .btn-header {
        display: none !important;
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition-normal);
}

@media (max-width: 1120px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background-color: var(--bg-cream);
        padding: 30px 6% 50px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transition: var(--transition-normal);
        overflow-y: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 99998;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }
    
    .main-nav a {
        font-size: 1.15rem;
        display: block;
        padding: 6px 0;
        white-space: normal;
    }
    
    .btn-header {
        display: none !important;
    }

    .mobile-nav-cta {
        display: block !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid var(--border-color);
    }
    
    .mobile-nav-cta .btn {
        width: 100% !important;
        justify-content: center;
    }
}

/* ==========================================================================
   URBAN VILLAGER MULTI-LANGUAGE SWITCHER (GTranslate UI)
   ========================================================================== */

/* Hide GTranslate default intrusive elements & Google top bars */
#glt-translate-trigger,
#glt-toolbar,
#flags,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#google_language_translator {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

/* Header Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
    z-index: 100010;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1.5px solid rgba(30, 53, 44, 0.16);
    border-radius: 50px;
    padding: 7px 15px;
    color: var(--primary-green);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 2px 6px rgba(30, 53, 44, 0.04);
    outline: none;
    line-height: 1;
    white-space: nowrap;
}

.lang-switcher-btn:hover,
.lang-switcher-btn:focus-visible {
    background: #fbfbf9;
    border-color: rgba(30, 53, 44, 0.38);
    box-shadow: 0 4px 12px rgba(30, 53, 44, 0.09);
}

.lang-switcher.open .lang-switcher-btn {
    border-color: var(--primary-green);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(30, 53, 44, 0.14);
}

.lang-globe-icon {
    color: var(--gold);
    font-size: 0.95rem;
}

.lang-current-label {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.lang-chevron-icon {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.22s ease;
    margin-left: 2px;
}

.lang-switcher.open .lang-chevron-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

/* Dropdown Menu */
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(30, 53, 44, 0.12);
    box-shadow: 0 14px 35px rgba(30, 53, 44, 0.15), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 6px;
    display: none;
    flex-direction: column;
    z-index: 100020;
    transform-origin: top right;
    animation: uvDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes uvDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lang-switcher.open .lang-dropdown-menu {
    display: flex;
}

.lang-dropdown-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(30, 53, 44, 0.06);
    margin-bottom: 4px;
}

.lang-dropdown-header i {
    font-size: 0.78rem;
}

.lang-option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: left;
    outline: none;
}

.lang-option-btn:hover {
    background: #f4f8f4;
}

.lang-option-btn.active {
    background: rgba(46, 125, 50, 0.09);
}

.lang-flag {
    font-size: 1.25rem;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.lang-text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lang-name-native {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.2;
}

.lang-option-btn.active .lang-name-native {
    font-weight: 700;
    color: #1b5e20;
}

.lang-name-en {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-top: 1px;
}

.lang-check-icon {
    font-size: 0.82rem;
    color: #2e7d32;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.2s ease;
    margin-left: 8px;
}

.lang-option-btn.active .lang-check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Segmented Language Switcher */
.mobile-lang-segmented {
    margin-bottom: 20px;
    padding: 12px 14px;
    background: rgba(30, 53, 44, 0.04);
    border: 1px solid rgba(30, 53, 44, 0.08);
    border-radius: 14px;
}

.mobile-lang-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.mobile-lang-title i {
    color: var(--gold);
}

.mobile-lang-pills {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    padding: 3px;
    border: 1px solid rgba(30, 53, 44, 0.1);
    gap: 3px;
}

.mobile-lang-pill {
    flex: 1;
    padding: 9px 4px;
    border: none;
    background: transparent;
    border-radius: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
}

.mobile-lang-pill.active {
    background: var(--primary-green);
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(30, 53, 44, 0.2);
}

/* Header responsiveness */
@media (max-width: 576px) {
    .header-actions {
        gap: 10px;
    }
    .lang-switcher-btn {
        padding: 6px 11px;
        font-size: 0.82rem;
    }
}


/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 95vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.hero-content {
    color: var(--white);
}

.hero-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 540px;
}

@media (max-width: 992px) {
    .hero-desc {
        margin: 0 auto 40px;
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 992px) {
    .hero-trust {
        justify-content: center;
    }
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.hero-trust span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.hero-floating-card {
    background-color: #fcfaf5;
    background-image: radial-gradient(circle at 10% 20%, rgba(253, 251, 247, 1) 0%, rgba(250, 246, 238, 1) 90%);
    padding: 30px 25px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 380px;
    justify-self: end;
    align-self: end;
    margin-bottom: -70px; /* Align to the bottom part of the banner, overlapping the seam */
    position: relative;
    z-index: 10;
    
    /* Jagged torn paper edges using CSS clip-path */
    clip-path: polygon(
        0% 0%, 98% 2%, 99% 10%, 97% 18%, 100% 26%, 98% 34%, 100% 42%, 97% 50%, 99% 58%, 98% 66%, 100% 74%, 97% 82%, 99% 90%, 98% 98%, 0% 100%,
        2% 92%, 0% 84%, 3% 76%, 1% 68%, 3% 60%, 0% 52%, 2% 44%, 0% 36%, 2% 28%, 1% 20%, 3% 12%
    );
    filter: drop-shadow(2px 5px 0px rgba(0,0,0,0.02)) drop-shadow(0px 15px 30px rgba(30, 53, 44, 0.25));
    transform: rotate(-1.5deg);
    transition: var(--transition-normal);
}

@media (max-width: 992px) {
    .hero-floating-card {
        justify-self: center;
        align-self: center;
        margin-bottom: -50px;
        margin-top: 20px;
    }
}

.hero-floating-card:hover {
    transform: rotate(0deg) translateY(-5px);
    filter: drop-shadow(2px 8px 0px rgba(0,0,0,0.02)) drop-shadow(0px 20px 35px rgba(30, 53, 44, 0.3));
}

.hero-floating-card .card-icon {
    font-size: 2.2rem;
    color: var(--sage-green);
    background-color: rgba(78, 135, 82, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-floating-card h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-green);
}

.hero-floating-card .paper-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage-green);
    margin-bottom: 6px;
}

.hero-floating-card .paper-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}


/* ==========================================
   OUR STORY SECTION
   ========================================== */
.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.story-image-wrapper {
    position: relative;
}

.story-img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    transition: var(--transition-normal);
}

.story-image-wrapper:hover .story-img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.story-overlay-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

@media (max-width: 480px) {
    .story-overlay-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 20px;
    }
}

.story-overlay-badge .badge-title {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.story-overlay-badge .badge-desc {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.story-content .story-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.founder-signature-box {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.founder-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

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

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

.pillar-card {
    display: flex;
    gap: 15px;
}

.pillar-icon {
    font-size: 1.4rem;
    color: var(--sage-green);
    background-color: rgba(78, 135, 82, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-card h3 {
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.pillar-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}


/* ==========================================
   OUR CROPS SECTION
   ========================================== */
.crops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.crop-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.02);
}

.crop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.crop-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
}

.crop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.crop-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.crop-badge.live-badge {
    background: linear-gradient(135deg, #1E352C 0%, #2e5143 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(30, 53, 44, 0.25);
}

.crop-badge.live-badge i {
    color: #74c67a;
}

.crop-badge.coming-soon-badge {
    background: #FFF8E7;
    color: #92580C;
    border: 1px solid #E6C280;
    box-shadow: 0 3px 10px rgba(146, 88, 12, 0.12);
    font-weight: 700;
}

.crop-badge.coming-soon-badge i {
    color: #B4690E;
}

.btn-prebook {
    background-color: #2D483A !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.btn-prebook:hover {
    background-color: var(--sage-green) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.crop-body {
    padding: 25px;
}

.crop-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.crop-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 54px;
}

.crop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

@media (max-width: 360px) {
    .crop-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .crop-card-footer button, 
    .crop-card-footer a {
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

.btn-order {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: var(--white) !important;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
}

.btn-order:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}


/* ==========================================
   CROP DIARY SECTION
   ========================================== */
.diary-layout-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .diary-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.diary-intro .section-desc {
    margin-bottom: 40px;
}

.diary-stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 480px) {
    .diary-stat-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.d-stat-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.d-stat-card h3 {
    font-size: 2.2rem;
    color: var(--sage-green);
    margin-bottom: 5px;
}

.d-stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.diary-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diary-stage-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.01);
}

.stage-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

@media (max-width: 480px) {
    .stage-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.stage-card-header h3 {
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.stage-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-active { background-color: #1E352C; color: #FFFFFF; font-weight: 700; }
.status-active i { color: #69D788; }
.status-upcoming { background-color: #FFF6E5; color: #9B5D0F; border: 1px solid #ECD4A4; font-weight: 700; }
.status-upcoming i { color: #C47918; }
.status-flowering { background-color: rgba(229, 169, 59, 0.1); color: var(--accent-gold); }
.status-heading { background-color: rgba(78, 135, 82, 0.1); color: var(--sage-green); }
.status-growing { background-color: rgba(30, 53, 44, 0.08); color: var(--primary-green); }
.status-vegetative { background-color: rgba(78, 135, 82, 0.08); color: var(--sage-green); }

.stage-progress {
    height: 6px;
    background-color: var(--bg-light);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.stage-progress .progress-bar {
    height: 100%;
    background-color: var(--sage-green);
    border-radius: 5px;
}

.stage-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.date-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.date-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-green);
}


/* ==========================================
   KNOW YOUR FOOD & TRANSPARENCY
   ========================================== */
.transparency-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.info-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-top: 40px;
}

@media (max-width: 480px) {
    .info-icon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.info-icon-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.info-item-icon {
    font-size: 1.6rem;
    color: var(--sage-green);
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-icon-item h4 {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-icon-item p {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-green);
    margin-top: 2px;
}

/* Simulated QR/Product Card */
.transparency-package-card {
    background-color: var(--white);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.02);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.package-logo-small {
    height: 36px;
    width: auto;
}

.premium-seal {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 3px 8px;
    border-radius: 4px;
}

.package-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 1.5 / 1;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(30, 53, 44, 0.9));
    color: var(--white);
    padding: 25px 20px 15px;
}

.package-label h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-label p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-top: 3px;
}

.package-qr-scan-zone {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 25px;
    align-items: center;
}

@media (max-width: 480px) {
    .package-qr-scan-zone {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.qr-code-wrapper {
    position: relative;
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    padding: 10px;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition-normal);
}

.qr-code-wrapper:hover {
    transform: scale(1.03);
    border-color: var(--sage-green);
}

/* Red Laser Scan Line Animation for transparency pack */
.qr-code-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff3b30;
    box-shadow: 0 0 8px #ff3b30;
    animation: scanLine 3s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.qr-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 53, 44, 0.85);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    gap: 8px;
}

.qr-code-wrapper:hover .qr-overlay {
    opacity: 1;
}

.qr-overlay i {
    font-size: 1.8rem;
}

.qr-overlay span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.scan-instructions h3 {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.scan-instructions p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.checkmark-list {
    margin-bottom: 15px;
}

.checkmark-list li {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.checkmark-list li i {
    color: var(--sage-green);
}


/* ==========================================
   FARM JOURNAL & INSTAGRAM STORIES
   ========================================== */
.stories-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 0 25px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
}

.stories-container::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbar */
}

.story-circle-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
}

.story-circle-card:hover {
    transform: translateY(-5px);
}

.story-img-ring {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 4px;
    border: 3px solid var(--sage-green);
    margin: 0 auto 15px;
    transition: var(--transition-normal);
}

.story-circle-card:hover .story-img-ring {
    border-color: var(--accent-gold);
}

.story-img-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.story-tag {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.status-sunrise { background-color: var(--accent-gold); }
.status-wheat { background-color: var(--sage-green); }
.status-life { background-color: #A0522D; }
.status-bajra { background-color: var(--primary-green); }
.status-packing { background-color: #556B2F; }
.status-rain { background-color: #4682B4; }

.story-meta h4 {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-green);
}

.story-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.journal-nav-buttons {
    display: flex;
    gap: 12px;
}

.journal-nav-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.journal-nav-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.instagram-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.25);
    transition: var(--transition-normal);
}

.instagram-badge-pill i {
    font-size: 1.05rem;
}

.instagram-badge-pill:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.45);
}

.instagram-embed-container {
    width: 100%;
    margin: 25px auto 0;
    overflow: hidden;
    border-radius: 20px;
}



/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-slider-container {
    position: relative;
    max-width: 850px;
    margin: 40px auto 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 30px 40px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-weight: 900;
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 576px) {
    .testimonial-quote {
        font-size: 1.25rem;
    }
}

.testimonial-user {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
}

.testimonial-user h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-user p {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.3);
}


/* ==========================================
   OUR FARM LIVE MAP & LEGACY
   ========================================== */
.map-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.map-visual-card {
    background-color: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage-green);
    background-color: rgba(78, 135, 82, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.map-header h3 {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.google-map-iframe-container {
    position: relative;
    width: 100%;
}

.map-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background-color: var(--bg-cream);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.map-card-footer i {
    color: var(--sage-green);
    font-size: 1rem;
}

.map-details-card .farm-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.farm-cta-buttons {
    margin-bottom: 40px;
}

.farm-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

@media (max-width: 480px) {
    .farm-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.farm-stat-item {
    display: flex;
    flex-direction: column;
}

.farm-stat-item .stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--sage-green);
    margin-bottom: 5px;
}

.farm-stat-item .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}


/* ==========================================
   CALL TO ACTION (CTA)
   ========================================== */
.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.text-center {
    text-align: center;
}

.cta-p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.cta-products-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.cta-product-pill {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.cta-product-pill img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.cta-product-pill:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}


/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background-color: var(--primary-green);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.brand-col .footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info li i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.contact-info a:hover {
    color: var(--white);
}

.footer-newsletter {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
}

.footer-newsletter h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    background: none;
    border: none;
    padding: 10px 20px;
    color: var(--white);
    flex-grow: 1;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.15);
    padding: 25px 0;
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.02);
}


/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    animation: none; /* pause pulse on hover */
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--primary-green);
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   TIMELINE MODAL POPUP
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 53, 44, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background-color: var(--bg-cream);
    width: 100%;
    max-width: 680px;
    max-height: 88vh;
    border-radius: 24px;
    padding: 38px 34px 34px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 100002 !important;
    margin: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(30, 53, 44, 0.08);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 100005 !important;
}

.modal-close:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: scale(1.08);
}

.modal-header-content {
    margin-bottom: 35px;
}

.modal-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage-green);
}

.modal-header-content h2 {
    font-size: 2rem;
    margin-top: 5px;
}

/* Timeline Layout */
.journey-timeline {
    position: relative;
    padding-left: 45px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -45px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--sage-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green);
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-panel {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.timeline-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 5px;
}

.timeline-heading h4 {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.timeline-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.timeline-current-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--accent-gold);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.timeline-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.timeline-img {
    margin-top: 14px;
    border-radius: 14px;
    max-height: 230px;
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(30, 53, 44, 0.1);
    box-shadow: var(--shadow-sm);
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Locked Timeline Items */
.timeline-item.locked .timeline-badge {
    border-color: var(--border-color);
    color: var(--text-muted);
    background-color: var(--bg-light);
}

.timeline-item.locked .timeline-panel {
    opacity: 0.6;
    background-color: var(--bg-light);
}


/* ==========================================
   INSTAGRAM STORIES VIEWER MODAL
   ========================================== */
.stories-viewer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 100010 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.stories-viewer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.story-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 100020 !important;
}

.story-viewer-container {
    width: 100%;
    max-width: 420px;
    height: 90vh;
    max-height: 780px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .story-viewer-container {
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
}

.story-progress-bars {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 1205;
}

.progress-bar-bg {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.35);
    flex-grow: 1;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: var(--white);
    transition: width 0.1s linear;
}

.story-viewer-header {
    position: absolute;
    top: 28px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1205;
    color: var(--white);
}

.story-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: var(--bg-cream);
}

.story-author-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.story-post-time {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1px;
}

.story-viewer-content {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 40px 20px 30px;
    color: var(--white);
    text-align: center;
}

.story-caption-overlay p {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.story-insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-insta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
    color: #ffffff !important;
}


.story-nav-area-left,
.story-nav-area-right {
    position: absolute;
    top: 80px;
    bottom: 80px;
    width: 25%;
    cursor: pointer;
    z-index: 1206;
}

.story-nav-area-left { left: 0; }
.story-nav-area-right { right: 0; }


/* ==========================================
   MICRO-ANIMATIONS & INTERSECTION OBSERVER CLASS
   ========================================== */

/* Fade In Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.animate-slide-up-delayed { opacity: 0; animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
.animate-fade-in-delayed { opacity: 0; animation: fadeIn 1s ease 0.6s forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }

/* Scroll-triggered classes via Intersection Observer */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(25px); /* Clean vertical slide instead of horizontal to eliminate page overflow */
    }
}

.revealed {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Custom outline icon hover rotations and transitions */
.pillar-card:hover .pillar-icon i,
.process-step-card:hover .step-icon i {
    transform: scale(1.18) rotate(15deg);
    color: var(--primary-green) !important;
}

.pillar-icon i,
.step-icon i {
    transition: transform var(--transition-normal), color var(--transition-normal);
    display: inline-block;
}

/* Centering outline icons in their relative divs */
.pillar-icon, .step-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* RESPONSIVE STORYTELLING UTILITIES */
.grid-2col-responsive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2col-responsive {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.why-uv-section {
    position: relative;
    overflow: hidden;
}

.why-uv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .why-uv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.pillars-grid-responsive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .pillars-grid-responsive {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   WHY URBAN VILLAGER (PREMIUM DYNAMIC ANIMATED STYLE)
   ========================================== */
.why-uv-section {
    background: radial-gradient(circle at 50% 10%, #254437 0%, var(--primary-green) 100%);
    position: relative;
    overflow: hidden;
}

/* Floating decorative shapes */
.why-uv-section::before,
.why-uv-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 135, 82, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.why-uv-section::before {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: driftSlow 20s ease-in-out infinite alternate;
}

.why-uv-section::after {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    animation: driftSlow 25s ease-in-out infinite alternate-reverse;
}

@keyframes driftSlow {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(50px) scale(1.15) rotate(15deg); }
}

/* 1. Trust Metrics Strip */
.why-uv-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 50px;
    position: relative;
    z-index: 2;
}

.why-uv-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    transition: transform var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
}

.why-uv-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(229, 169, 59, 0.4);
}

.stat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(78, 135, 82, 0.25);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-highlight {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.stat-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

/* 2. Side-by-Side Comparison Grid */
.why-uv-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.compare-box {
    border-radius: 26px;
    padding: 38px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.compare-box.market-box {
    background: rgba(22, 34, 29, 0.85);
    border: 1px solid rgba(220, 53, 69, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.compare-box.market-box:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 53, 69, 0.45);
}

.compare-box.uv-box {
    background: linear-gradient(135deg, rgba(30, 68, 51, 0.85) 0%, rgba(20, 48, 36, 0.95) 100%);
    border: 2px solid rgba(229, 169, 59, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(78, 135, 82, 0.25);
}

.compare-box.uv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(229, 169, 59, 0.3);
}

.uv-box-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 169, 59, 0.2) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.compare-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.market-badge {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.uv-badge {
    background: rgba(229, 169, 59, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(229, 169, 59, 0.4);
}

.compare-title {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.compare-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin-bottom: 28px;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.compare-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.compare-item .icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 2px;
}

.compare-item .icon-circle.cross {
    background: rgba(220, 53, 69, 0.2);
    color: #ff5252;
}

.compare-item .icon-circle.check {
    background: rgba(229, 169, 59, 0.25);
    color: var(--accent-gold);
}

.compare-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 2px;
}

.compare-item span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.45;
    display: block;
}

/* 3. Interactive Batch Passport Card */
.why-uv-passport-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 35px 45px;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 40px;
    align-items: center;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.passport-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.passport-left h3 {
    font-size: 1.7rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 10px;
}

.passport-left p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.passport-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.meta-badge-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 3px;
}

/* Scanner Card Inside Passport */
.qr-scanner-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scanner-laser-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--accent-gold);
    animation: laserScan 2.5s ease-in-out infinite alternate;
}

@keyframes laserScan {
    0% { top: 10px; opacity: 0.2; }
    50% { opacity: 1; }
    100% { top: 90%; opacity: 0.2; }
}

.qr-box {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    animation: floatAnimation 3s ease-in-out infinite alternate;
}

.qr-scan-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.qr-scanner-card .btn {
    width: 100%;
}

/* Responsive Rules for Why UV Section */
@media (max-width: 992px) {
    .why-uv-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .why-uv-compare-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .why-uv-passport-card {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .why-uv-stats-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .passport-meta-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .compare-box {
        padding: 28px 20px;
    }
    .compare-title {
        font-size: 1.4rem;
    }
}

/* ==========================================
   LEAFLET MAP CUSTOM PIN & LOGO AESTHETIC
   ========================================== */
.custom-map-marker {
    background: none !important;
    border: none !important;
}

.marker-pin-wrapper {
    position: relative;
    width: 50px;
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.marker-pin-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-green);
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(229, 169, 59, 0.45);
    animation: markerFloat 2s ease-in-out infinite alternate;
}

.marker-logo-img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    background-color: var(--white) !important;
    display: block !important;
    padding: 3px !important;
}

.marker-pin-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent-gold);
    margin-top: -2px;
}

@keyframes markerFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

/* Fix popup z-index layering inside map cards */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.leaflet-popup-tip {
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   VISUAL GRID LAYOUT UPGRADES WITH IMAGES
   ========================================== */
/* Core Values Split */
.values-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.values-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border-color);
}

.values-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.values-image-card:hover .values-showcase-img {
    transform: scale(1.06);
}

.values-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(30, 53, 44, 0.95) 0%, rgba(30, 53, 44, 0.4) 70%, rgba(0,0,0,0) 100%);
    color: var(--white);
}

.values-image-overlay .overlay-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.values-image-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 8px;
}

.values-image-overlay p {
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

/* How We Grow Process Split */
.process-split-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.process-showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 0.85 / 1;
    border: 1px solid var(--border-color);
}

.process-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.process-showcase-card:hover .process-showcase-img {
    transform: scale(1.06);
}

.process-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(30, 53, 44, 0.95) 0%, rgba(30, 53, 44, 0.4) 70%, rgba(0,0,0,0) 100%);
    color: var(--white);
}

.process-image-caption span {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.process-image-caption p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

.process-steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Experience It First-Hand Banner */
.process-bottom-cta {
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.cta-banner-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    background-color: var(--bg-light);
}

.cta-banner-content {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cta-banner-content .banner-sub {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage-green);
    margin-bottom: 10px;
}

.cta-banner-content h3 {
    font-size: 1.7rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 480px;
}

.cta-banner-image-container {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.cta-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.cta-banner-grid:hover .cta-banner-img {
    transform: scale(1.05);
}

/* Breakpoints for visual layout upgrades */
@media (max-width: 992px) {
    .values-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-image-card {
        aspect-ratio: 1.5 / 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .process-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-showcase-card {
        aspect-ratio: 1.5 / 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-banner-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-content {
        padding: 35px 30px;
    }
    
    .cta-banner-image-container {
        min-height: 220px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .process-steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-image-card, .process-showcase-card {
        aspect-ratio: 1.2 / 1;
    }
}

/* ==========================================
   TRANSPARENCY CAROUSEL SLIDER STYLING
   ========================================== */
.transparency-card-box {
    min-width: 0; /* Critical Grid-Flex safety fix! Prevents grid column stretching */
    width: 100%;
}

.transparency-carousel-container {
    position: relative;
    width: 100%;
    max-width: 530px; /* adjusted to give spacing for side arrows */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transparency-slider-wrapper {
    width: 100%;
    max-width: 440px; /* exact width of the card container + shadow room */
    overflow: hidden;
    padding: 15px 0; /* Zero side padding so overflow:hidden clips other cards cleanly! */
    box-sizing: border-box;
    min-width: 0;
}

.transparency-slider-track {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); /* premium, slow, extremely fluid ease-out transition */
    width: 100%; /* track width is default, slides will take 100% of it */
}

.transparency-package-slide {
    flex: 0 0 100%; /* each slide takes exactly 100% of the wrapper container */
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px; /* small side padding so card shadows don't clip at edges */
}

.transparency-package-card {
    background-color: var(--white);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Navigation Arrows - Placed outside the wrapper box with organic overlay alignment */
.t-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.t-nav-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-50%) scale(1.08);
}

.t-nav-btn.prev {
    left: -15px; /* positioned with beautiful overlapping offset relative to wrapper */
}

.t-nav-btn.next {
    right: -15px; /* positioned with beautiful overlapping offset relative to wrapper */
}

@media (max-width: 576px) {
    .transparency-slider-wrapper {
        max-width: 320px; /* adjusted for mobile screens */
    }
    .t-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .t-nav-btn.prev {
        left: -10px;
    }
    .t-nav-btn.next {
        right: -10px;
    }
}

/* ==========================================
   LAPTOP & TABLET NAVIGATION TUNING (993px - 1200px)
   ========================================== */
@media (min-width: 993px) and (max-width: 1200px) {
    .header-container {
        padding: 10px 2% !important;
    }
    .main-nav ul {
        gap: 14px !important;
    }
    .main-nav a {
        font-size: 0.86rem !important;
    }
    .logo-text {
        font-size: 1.12rem !important;
    }
    .site-logo {
        height: 42px !important;
    }
    .btn-header {
        padding: 9px 16px !important;
        font-size: 0.82rem !important;
    }
}

/* ==========================================
   MOBILE NAVIGATION DRAWER HEIGHT & Z-INDEX
   ========================================== */
@media (max-width: 1120px) {
    .site-header {
        height: 74px !important; /* Force a static consistent height on mobile */
        display: flex;
        align-items: center;
        padding: 0 !important; /* Overrides scroll padding transitions */
        z-index: 99999 !important;
    }
    
    .header-container {
        padding: 0 4% !important;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .main-nav {
        position: fixed;
        top: 74px !important; /* Perfectly aligned to the bottom edge of header */
        left: -100%;
        width: 100% !important;
        height: calc(100vh - 74px) !important;
        background-color: var(--bg-cream) !important;
        padding: 35px 8% 50px !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        transition: var(--transition-normal) !important;
        z-index: 99998 !important;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0 !important;
    }
    
    .mobile-nav-cta {
        display: block !important;
        margin-top: 15px !important;
        padding-top: 15px !important;
        border-top: 1px solid var(--border-color);
    }
    
    .mobile-nav-cta .btn {
        width: 100% !important;
        justify-content: center;
    }
}

body.menu-open {
    overflow: hidden !important;
}

/* Mobile Header Precision Scaling (Ensures Logo + Lang Switcher + Hamburger never overflow) */
@media (max-width: 576px) {
    .header-container {
        padding: 0 12px !important;
    }
    .logo-link {
        gap: 8px !important;
    }
    .site-logo {
        height: 38px !important;
    }
    .logo-text {
        font-size: 1.05rem !important;
        letter-spacing: 0.5px !important;
    }
    .header-actions {
        gap: 6px !important;
    }
    .lang-switcher-btn {
        padding: 5px 9px !important;
        font-size: 0.8rem !important;
        gap: 5px !important;
    }
    .lang-chevron-icon {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .header-container {
        padding: 0 8px !important;
    }
    .logo-text {
        font-size: 0.92rem !important;
    }
    .site-logo {
        height: 34px !important;
    }
    .lang-switcher-btn {
        padding: 4px 7px !important;
        font-size: 0.74rem !important;
    }
    .nav-toggle {
        padding: 4px !important;
    }
}

/* Global Responsive Tables for Single Posts and Pages */
.single-post-content table,
.entry-content table,
.post-body table,
article table,
.farmers-dual-showcase table,
table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Section Horizontal Overflow Containment */
.transparency-section {
    overflow: hidden !important;
}

.transparency-carousel-container {
    max-width: 100% !important;
    overflow: hidden !important;
}

@media (max-width: 576px) {
    .transparency-slider-wrapper {
        max-width: 295px !important;
        padding: 10px 0 !important;
    }
    .transparency-package-card {
        padding: 22px 16px !important;
    }
    .t-nav-btn {
        width: 34px !important;
        height: 34px !important;
    }
    .t-nav-btn.prev {
        left: 2px !important;
    }
    .t-nav-btn.next {
        right: 2px !important;
    }
}

/* ==========================================
   INNER HERO & OUR FARM RESPONSIVE STYLES
   ========================================== */
.inner-hero .hero-title {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .inner-hero {
        min-height: 38vh !important;
        padding-top: 90px !important;
        padding-bottom: 40px !important;
    }
    .inner-hero .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
    }
    .inner-hero .cta-p {
        font-size: 0.92rem !important;
    }
    .farm-details-section {
        padding: 50px 0 !important;
    }
    .map-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .map-header {
        padding: 15px 20px !important;
    }
    .map-header h3 {
        font-size: 1.1rem !important;
    }
    #map {
        height: 290px !important;
    }
    .map-card-footer {
        padding: 14px 18px !important;
        font-size: 0.78rem !important;
        flex-wrap: wrap !important;
        line-height: 1.4 !important;
    }
    .process-timeline-row {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .process-step-card {
        padding: 25px 20px !important;
    }
}

@media (max-width: 480px) {
    .inner-hero .hero-title {
        font-size: 1.85rem !important;
    }
    #map {
        height: 250px !important;
    }
    .map-card-footer {
        padding: 12px 14px !important;
        font-size: 0.74rem !important;
    }
}

/* ==========================================
   RESPONSIVE BOOKING FORM (OUR FARM PAGE)
   ========================================== */
.booking-card {
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
    background-color: var(--bg-light);
}

.booking-card h4 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-card h4 i {
    color: var(--sage-green);
}

.booking-card .form-group p,
.contact-form-box p {
    margin: 0 !important;
    padding: 0 !important;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.booking-form-grid input:not([type="submit"]),
.booking-form-row input:not([type="submit"]),
.booking-card input:not([type="submit"]),
.booking-card select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.booking-form-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.guests-input {
    width: 120px !important;
    flex-shrink: 0;
}

.booking-form-row button,
.booking-card input[type="submit"] {
    flex-grow: 1;
    background-color: var(--sage-green) !important;
    color: var(--white) !important;
    border: 2px solid transparent !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    transition: var(--transition-normal) !important;
    width: 100% !important;
    box-shadow: none !important;
}

.booking-form-row button:hover,
.booking-card input[type="submit"]:hover {
    background-color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 53, 44, 0.25) !important;
}

@media (max-width: 480px) {
    .booking-card {
        padding: 20px 16px !important;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .booking-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .guests-input {
        width: 100% !important;
    }
}

/* ==========================================
   TEAM / LEADERSHIP SECTION STYLING
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 40px auto 0;
}

.team-member-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(78, 135, 82, 0.15);
}

.member-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member-card:hover .member-img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.member-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent-gold);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.member-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.member-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 700;
}

.member-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.member-socials {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.member-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.member-socials a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 440px;
    }
}

/* ==========================================
   FAQ ACCORDION STYLING
   ========================================== */
.faq-container {
    max-width: 820px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--sage-green);
}

.faq-header {
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background-color: var(--white);
    transition: var(--transition-normal);
}

.faq-header h3 {
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--sage-green);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background-color: var(--bg-cream);
    border-top: 1px solid transparent;
}

.faq-body p {
    padding: 25px 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active {
    border-color: var(--sage-green);
}

.faq-item.active .faq-header {
    background-color: rgba(78, 135, 82, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-body {
    border-top-color: var(--border-color);
}

/* Contact Form 7 integration styling */
.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box input[type="tel"],
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
}
.contact-form-box select {
    background-color: var(--white);
}
.contact-form-box textarea {
    resize: none;
}
.contact-form-box .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.contact-form-box .wpcf7-submit {
    width: 100%;
}
.booking-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
}

/* ==========================================
   BLOG DETAILS & SINGLE POST STYLES
   ========================================== */
.blog-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 0.8fr);
    gap: 50px;
    margin-top: 50px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.blog-post-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.blog-post-header {
    margin-bottom: 25px;
    min-width: 0;
    max-width: 100%;
}

.blog-post-header h2 {
    word-break: break-word;
    overflow-wrap: break-word;
}

.blog-meta-details {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 15px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.blog-meta-details span i {
    color: var(--sage-green);
    margin-right: 5px;
}

.blog-post-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content h2,
.blog-post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 4.5vw, 1.7rem);
    color: var(--primary-green);
    margin: 35px 0 15px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.blog-post-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.15rem;
    margin: 25px 0 10px;
}

.blog-post-content ul, 
.blog-post-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Modern Elegant Blockquote */
.blog-post-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    background: rgba(46, 85, 64, 0.04);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--primary-green);
    box-sizing: border-box;
    max-width: 100%;
}

.blog-post-content blockquote p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--primary-green);
}

/* Responsive Table Container for Blog Articles */
.table-responsive,
.blog-post-content .table-responsive,
.blog-post-content div:has(> table) {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 30px 0 !important;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    box-sizing: border-box;
}

.table-responsive table,
.blog-post-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0;
}

@media (max-width: 768px) {
    .table-responsive table,
    .blog-post-content table {
        min-width: 520px !important;
    }
}

.table-scroll-hint {
    display: none;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .table-scroll-hint {
        display: flex;
    }
}

/* Specific Mandi Comparison Table: 3-Column Fit Without Horizontal Scroll */
.mandi-comparison-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 30px 0;
    box-sizing: border-box;
}

.blog-post-content .mandi-comparison-table,
.mandi-comparison-table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.mandi-comparison-table th {
    background: var(--primary-green);
    color: #ffffff;
    padding: 11px 6px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    vertical-align: middle;
}

.mandi-comparison-table th.col-comp {
    width: 36%;
    text-align: left;
    padding-left: 10px;
}

.mandi-comparison-table th.col-mandi {
    width: 31%;
    text-align: center;
    background: #223c30;
    border-left: 1px solid rgba(255,255,255,0.12);
    border-right: 1px solid rgba(255,255,255,0.12);
}

.mandi-comparison-table th.col-uv {
    width: 33%;
    text-align: center;
    background: #184c34;
}

.mandi-comparison-table th .th-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.82;
    margin-top: 2px;
}

.mandi-comparison-table td {
    padding: 9px 6px;
    font-size: 0.76rem;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    word-break: break-word;
    overflow-wrap: break-word;
}

.mandi-comparison-table td.col-comp {
    color: var(--text-dark);
    padding-left: 10px;
    font-weight: 500;
}

.mandi-comparison-table td.col-mandi {
    text-align: center;
    background: #fafafa;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.mandi-comparison-table td.col-uv {
    text-align: center;
    background: #f4faf5;
}

.mandi-comparison-table .cell-price {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
}

.mandi-comparison-table .cell-note {
    display: block;
    font-size: 0.65rem;
    line-height: 1.2;
    color: var(--text-muted);
    margin-top: 2px;
}

.mandi-comparison-table .val-neg {
    color: #c0392b;
}

.mandi-comparison-table .val-pos {
    color: #1e7e34;
}

.mandi-comparison-table .highlight-badge {
    color: #1e7e34;
    font-weight: 600;
}

.mandi-comparison-table .row-highlight td {
    background: #eaf6ec !important;
    border-top: 2px solid #2e7d32;
    padding-top: 11px;
    padding-bottom: 11px;
}

.mandi-comparison-table .row-highlight td.col-mandi {
    background: #fdf2f2 !important;
}

.mandi-comparison-table .bold-large {
    font-size: 0.95rem;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline;
    }
    .mandi-comparison-table th {
        padding: 16px 14px;
        font-size: 0.92rem;
    }
    .mandi-comparison-table th .th-sub {
        font-size: 0.78rem;
        display: inline-block;
        margin-left: 4px;
    }
    .mandi-comparison-table td {
        padding: 14px 14px;
        font-size: 0.9rem;
    }
    .mandi-comparison-table .cell-price {
        font-size: 1rem;
        display: inline-block;
        margin-right: 4px;
    }
    .mandi-comparison-table .cell-note {
        font-size: 0.8rem;
        display: inline-block;
    }
    .mandi-comparison-table th.col-comp,
    .mandi-comparison-table td.col-comp {
        width: 40%;
        padding-left: 20px;
    }
    .mandi-comparison-table th.col-mandi,
    .mandi-comparison-table td.col-mandi {
        width: 30%;
    }
    .mandi-comparison-table th.col-uv,
    .mandi-comparison-table td.col-uv {
        width: 30%;
    }
}

/* Sidebar Styling */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    min-width: 0;
    max-width: 100%;
}

.sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    box-sizing: border-box;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.recent-post-link-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    text-decoration: none;
}

.recent-post-link-card:last-child {
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0 0 5px;
    transition: var(--transition-normal);
}

.recent-post-link-card:hover .recent-post-info h4 {
    color: var(--sage-green);
}

.recent-post-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .blog-details-grid {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .blog-sidebar {
        margin-top: 45px;
        position: static;
        width: 100% !important;
        max-width: 100% !important;
    }
    .blog-post-card {
        padding: 26px 20px !important;
        border-radius: 18px !important;
        overflow: hidden;
    }
    .blog-post-header h2 {
        font-size: clamp(1.35rem, 4.5vw, 1.85rem) !important;
    }
    .blog-meta-details {
        gap: 12px !important;
        font-size: 0.8rem !important;
    }
    .blog-post-content {
        font-size: 0.95rem !important;
        line-height: 1.75 !important;
    }
    .farmers-dual-showcase {
        padding: 24px 16px !important;
        margin: 30px 0 !important;
    }
}

@media (max-width: 576px) {
    .blog-post-card {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }
    .farmers-dual-showcase {
        padding: 20px 12px !important;
        margin: 25px 0 !important;
    }
    .farmers-dual-showcase h3 {
        font-size: clamp(1.15rem, 4.5vw, 1.45rem) !important;
    }
    .farmers-dual-showcase > div:last-child {
        gap: 20px !important;
    }
    .blog-post-content blockquote {
        padding: 16px 14px;
        margin: 20px 0;
    }
    .blog-post-content blockquote p {
        font-size: 0.92rem;
    }
    .sidebar-widget {
        padding: 22px 16px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 380px) {
    .blog-post-card {
        padding: 16px 10px !important;
        border-radius: 12px !important;
    }
    .farmers-dual-showcase {
        padding: 16px 10px !important;
    }
}

/* ==========================================
   CROP JOURNEY LIGHTBOX VIEWER & TIMELINE IMAGES
   ========================================== */
.timeline-img-wrap {
    position: relative;
    margin-top: 14px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    width: 100%;
    border: 1px solid rgba(30, 53, 44, 0.1);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-cream);
}

.timeline-img-wrap .timeline-img {
    margin-top: 0;
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-img-wrap:hover .timeline-img {
    transform: scale(1.04);
}

.timeline-img-zoom-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(30, 53, 44, 0.88);
    color: #ffffff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.timeline-img-wrap:hover .timeline-img-zoom-badge {
    opacity: 1;
    transform: translateY(-2px);
    background-color: var(--accent-gold);
    color: var(--primary-green);
}

/* Fullscreen Lightbox Overlay */
.crop-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 200000 !important;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 30px 16px;
}

.crop-lightbox-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.lightbox-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crop-lightbox-overlay.active .lightbox-wrapper {
    transform: scale(1);
}

.lightbox-close-btn {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-green);
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 200010 !important;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lightbox-close-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green);
    transform: scale(1.1);
}

.lightbox-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    max-height: 74vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.lightbox-img {
    max-width: 100%;
    max-height: 74vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    margin-top: 16px;
    text-align: center;
    color: #ffffff;
    max-width: 680px;
    padding: 0 10px;
}

.lightbox-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 0 0 5px;
}

.lightbox-caption p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 576px) {
    .lightbox-close-btn {
        top: -12px;
        right: 0px;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .lightbox-caption h4 {
        font-size: 1.05rem;
    }
}

