/*
Theme Name: Vihari Farms
Theme URI: https://viharifarms.com
Author: Vihari Farms
Author URI: https://viharifarms.com
Description: A pixel-perfect WordPress theme for Vihari Farms - Free-Range Country Chicken & Organic Eggs
Version: 12.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vihari-farms
Tags: one-column, custom-colors, custom-logo, featured-images, theme-options
*/

/* =============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================= */
:root {
    /* Primary Colors */
    --vf-green: #2E7D32;
    --vf-green-dark: #1B5E20;
    --vf-green-medium: #43A047;
    --vf-green-light: #E8F5E9;
    --vf-green-lighter: #F1F8E9;
    
    /* Accent Colors */
    --vf-yellow: #FBC02D;
    --vf-yellow-light: #FFD54F;
    --vf-yellow-dark: #F9A825;
    
    /* Neutral Colors */
    --vf-dark: #1A1A1A;
    --vf-dark-70: rgba(26, 26, 26, 0.7);
    --vf-beige: #F5F0E8;
    --vf-warm-white: #FAFAF5;
    --vf-cream: #FFFEF7;
    
    /* Background Colors */
    --bg-background: #FAFAF5;
    --bg-foreground: #1A1A1A;
    --muted-foreground: #6B7280;
    
    /* Typography */
    --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-open-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-mobile: 3rem 0;
    --container-max: 80rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 8px 40px rgba(46, 125, 50, 0.1);
    --shadow-yellow: 0 8px 32px rgba(251, 192, 45, 0.35);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 50;
    --z-modal-backdrop: 60;
    --z-modal: 70;
    --z-tooltip: 80;
}

/* =============================================
   CSS RESET & BASE STYLES
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-open-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vf-dark);
    background-color: var(--bg-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--vf-green);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--vf-green);
    color: white;
    padding: 0.5rem 1rem;
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: var(--z-modal-backdrop);
    background: linear-gradient(90deg, #1B5E20 0%, #2E7D32 30%, #4CAF50 50%, #2E7D32 70%, #1B5E20 100%);
    opacity: 0.6;
    transition: opacity 500ms;
    width: 0%;
}

.scroll-progress.hidden {
    opacity: 0;
}

/* =============================================
   HEADER STYLES
   ============================================= */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: var(--z-fixed);
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-slow) ease-out;
}

@media (min-width: 768px) {
    .site-header {
        height: 72px;
    }
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

/* Logo */
.header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 0.25rem 0.625rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 125, 50, 0.15);
    transition: transform var(--transition-base);
}

.header-logo-link:hover {
    transform: scale(1.05);
}

.header-logo-link img {
    height: 32px;
    width: auto;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .header-logo-link img {
        height: 40px;
    }
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.125rem;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.nav-list li {
    position: relative;
}

.nav-link {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--vf-dark-70);
    border-radius: var(--radius-md);
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--vf-green-dark);
}

.nav-link.active {
    color: var(--vf-green-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2.5px;
    background: var(--vf-green);
    border-radius: var(--radius-full);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

/* Phone Link */
.header-phone {
    display: none;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.625rem;
    color: var(--vf-dark-70);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header-phone:hover {
    color: var(--vf-green);
    background: var(--vf-green-light);
}

.header-phone svg {
    width: 16px;
    height: 16px;
}

.header-phone span {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Header Divider */
.header-divider {
    display: none;
    width: 1px;
    height: 24px;
    background: rgba(26, 26, 26, 0.1);
}

@media (min-width: 768px) {
    .header-divider {
        display: block;
    }
}

/* Order Now Button */
.btn-order {
    display: none;
    position: relative;
    background: linear-gradient(to right, var(--vf-green), var(--vf-green-dark));
    color: white;
    border-radius: var(--radius-full);
    padding: 0.625rem 1.5rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    overflow: hidden;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .btn-order {
        display: inline-flex;
    }
}

.btn-order:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.35);
}

.btn-order:active {
    transform: scale(0.97);
}

.btn-order::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--vf-green-medium), var(--vf-green));
    opacity: 0;
    transition: opacity 400ms;
}

.btn-order:hover::before {
    opacity: 1;
}

.btn-order span {
    position: relative;
    z-index: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 0.625rem;
    color: var(--vf-dark-70);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--vf-green);
    background: var(--vf-green-light);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: white;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--vf-beige);
}

.mobile-menu-close {
    padding: 0.5rem;
    color: var(--vf-dark-70);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--vf-green);
    background: var(--vf-green-light);
}

.mobile-nav-list {
    padding: 1.5rem;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--vf-beige);
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--vf-dark);
    transition: color var(--transition-fast);
}

.mobile-nav-list a:hover {
    color: var(--vf-green);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Background with Ken Burns Effect */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.08) translateY(-10px);
    }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.5) 0%, rgba(27, 94, 32, 0.4) 50%, rgba(27, 94, 32, 0.45) 100%);
}

/* Hero Light Effects */
.hero-light-effects {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    bottom: -10px;
    border-radius: var(--radius-full);
    animation: particleFloat var(--particle-duration, 10s) ease-in-out infinite;
    animation-delay: var(--particle-delay, 0s);
}

.hero-particle.yellow {
    background: rgba(251, 192, 45, 0.4);
}

.hero-particle.green {
    background: rgba(67, 160, 71, 0.3);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 7rem 1rem 5rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 9rem;
        padding-bottom: 6rem;
    }
}

.hero-content-inner {
    max-width: 48rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    user-select: none;
}

/* Hero Headline */
.hero-headline {
    margin-top: 1.5rem;
    font-family: var(--font-poppins);
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-headline {
        margin-top: 2rem;
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4.5rem;
    }
}

.hero-headline .word-group {
    display: inline-flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.hero-headline .letter {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    animation: letterReveal 0.6s ease forwards;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero-headline .space {
    display: inline-block;
    width: 0.3em;
}

/* Word Underline Animation */
.hero-headline .word-underline {
    position: relative;
}

.hero-headline .word-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(251, 192, 45, 0.7);
    border-radius: var(--radius-full);
    animation: underlineSlide 0.8s ease forwards;
    animation-delay: 0.8s;
    transform: scaleX(0);
    transform-origin: left;
}

@media (min-width: 768px) {
    .hero-headline .word-underline::after {
        height: 4px;
    }
}

@keyframes underlineSlide {
    to {
        transform: scaleX(1);
    }
}

/* Word Shimmer Animation */
.hero-headline .word-shimmer {
    position: relative;
    background: linear-gradient(90deg, #fff 0%, #FBC02D 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    animation-delay: 1.2s;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Hero Description */
.hero-description {
    margin-top: 1.25rem;
    font-family: var(--font-open-sans);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .hero-description {
        margin-top: 1.5rem;
        font-size: 1.25rem;
    }
}

/* Hero Benefits */
.hero-benefits {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0.75rem;
}

@media (min-width: 768px) {
    .hero-benefits {
        margin-top: 2rem;
    }
}

.hero-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .hero-benefit {
        font-size: 1rem;
    }
}

.hero-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: rgba(251, 192, 45, 0.25);
}

.hero-benefit-icon svg {
    width: 14px;
    height: 14px;
    color: var(--vf-yellow);
}

/* Hero CTA */
.hero-cta {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-cta {
        margin-top: 2.5rem;
    }
}

/* Primary Yellow Button */
.btn-primary-yellow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #FBC02D 0%, #FFD54F 25%, #FBC02D 50%, #FFD54F 75%, #FBC02D 100%);
    color: var(--vf-dark);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-primary-yellow:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
}

.btn-primary-yellow:active {
    transform: scale(0.97);
}

.btn-primary-yellow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 700ms ease-in-out;
}

.btn-primary-yellow:hover::before {
    transform: translateX(100%);
}

.btn-primary-yellow svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-primary-yellow:hover svg {
    transform: translateX(4px);
}

/* Secondary Hero Button */
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all var(--transition-base);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.03);
}

.btn-secondary-hero:active {
    transform: scale(0.97);
}

.btn-secondary-hero svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
}

.btn-secondary-hero:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    transition: color var(--transition-base);
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator span {
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Hero Bottom Fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    z-index: 1;
    background: linear-gradient(to top, rgba(250, 250, 245, 0.85) 0%, rgba(250, 250, 245, 0.3) 40%, transparent 100%);
}

/* =============================================
   TRUST INDICATORS SECTION
   ============================================= */
.trust-indicators {
    position: relative;
    width: 100%;
    border-top: 1px solid var(--vf-beige);
    border-bottom: 1px solid var(--vf-beige);
    background: white;
}

.trust-indicators-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .trust-indicators-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .trust-indicators-inner {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .trust-indicators-inner {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-2xl);
    background: var(--vf-green-light);
    color: var(--vf-green);
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.15);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-title {
    margin-top: 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .trust-title {
        font-size: 1rem;
    }
}

.trust-description {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.375;
    max-width: 160px;
}

@media (min-width: 768px) {
    .trust-description {
        font-size: 0.875rem;
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: var(--section-padding-mobile);
    background: var(--vf-warm-white);
}

@media (min-width: 1024px) {
    .about-section {
        padding: var(--section-padding);
    }
}

.about-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .about-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-green);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    left: 1rem;
    background: var(--vf-green);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25);
}

@media (min-width: 640px) {
    .about-badge {
        left: 1.5rem;
    }
}

.about-badge-label {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-badge-value {
    display: block;
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.about-decoration {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(46, 125, 50, 0.15);
    z-index: -1;
}

/* About Content */
.about-label {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vf-green);
}

.about-title {
    margin-top: 0.75rem;
    font-family: var(--font-poppins);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
    }
}

.about-title .text-gradient {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-medium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    margin-top: 1.25rem;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 0.9375rem;
    }
}

/* About Stats */
.about-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-stats {
        gap: 1.5rem;
    }
}

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

@media (min-width: 640px) {
    .stat-item {
        text-align: left;
    }
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .stat-header {
        justify-content: flex-start;
    }
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-lg);
    background: var(--vf-green-light);
    color: var(--vf-green);
}

.stat-icon svg {
    width: 16px;
    height: 16px;
}

.stat-number {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vf-dark);
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* About CTA Button */
.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--vf-green);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: var(--vf-green);
    transition: all var(--transition-base);
}

.btn-outline-green:hover {
    background: var(--vf-green);
    color: white;
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.25);
}

.btn-outline-green:active {
    transform: scale(0.97);
}

.btn-outline-green svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.btn-outline-green:hover svg {
    transform: translateX(4px);
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .products-section {
        padding: var(--section-padding);
    }
}

.products-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .products-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .products-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-label {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vf-green);
}

.section-title {
    margin-top: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

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

/* Section Heading and Subtitle */
.section-heading {
    margin-top: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.25rem;
    }
}

.section-heading .text-gradient {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-medium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    margin-top: 0.75rem;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Product Filters */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .product-filters {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .product-filters {
        margin-bottom: 3rem;
    }
}

.filter-tab {
    padding: 0.5rem 1rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vf-dark-70);
    background: var(--vf-green-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.filter-tab:hover {
    color: var(--vf-green-dark);
}

.filter-tab.active {
    background: var(--vf-green);
    color: white;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Product Card */
.product-card {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.product-card.hidden {
    display: none;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

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

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.gallery-slide.active {
    opacity: 1;
}

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

/* Gallery Dots */
.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: white;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.gallery-dot.active {
    opacity: 1;
    width: 18px;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    z-index: 10;
}

.product-badge {
    padding: 0.25rem 0.625rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-badge.bestseller {
    background: var(--vf-yellow);
    color: var(--vf-dark);
}

.product-badge.organic {
    background: var(--vf-green);
    color: white;
}

.product-badge.new {
    background: #3B82F6;
    color: white;
}

/* Product Content */
.product-content {
    padding: 1rem;
}

@media (min-width: 640px) {
    .product-content {
        padding: 1.25rem;
    }
}

.product-category {
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vf-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title {
    margin-top: 0.25rem;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.product-description {
    margin-top: 0.625rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
}

.rating-value {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.rating-count {
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Product Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.price-current {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vf-dark);
}

.price-unit {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Product CTA */
.product-cta {
    margin-top: 1rem;
}

.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--vf-green);
    color: white;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-product:hover {
    background: var(--vf-green-dark);
}

.btn-product svg {
    width: 16px;
    height: 16px;
}

/* Product Info Section */
.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 640px) {
    .product-info {
        padding: 1.25rem;
    }
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-category {
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--vf-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-type {
    font-family: var(--font-open-sans);
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    padding-left: 0.5rem;
    border-left: 1px solid var(--vf-beige);
}

.product-name {
    margin-top: 0.375rem;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
    line-height: 1.3;
}

.product-local-name {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    z-index: 10;
}

.badge-bestseller {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--vf-yellow);
    color: var(--vf-dark);
}

.badge-new {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: #3B82F6;
    color: white;
}

.badge-discount {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--vf-green);
    color: white;
}

/* WhatsApp Order Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    color: #d1d5db;
}

.rating-stars svg.filled {
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
}

.rating-stars svg.half {
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
    opacity: 0.5;
}

.rating-value {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vf-dark);
    margin-left: 0.375rem;
}

/* Price Styles */
.price-original {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works {
    padding: var(--section-padding-mobile);
    background: var(--vf-green-lighter);
}

@media (min-width: 1024px) {
    .how-it-works {
        padding: var(--section-padding);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vf-green);
    color: white;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 1rem auto 0;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-2xl);
}

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

.step-title {
    margin-top: 1.25rem;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.step-description {
    margin-top: 0.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* =============================================
   WHY CHOOSE SECTION
   ============================================= */
.why-choose {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .why-choose {
        padding: var(--section-padding);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--vf-warm-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--vf-green-light);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    color: var(--vf-green);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    margin-top: 1rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.feature-description {
    margin-top: 0.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* =============================================
   WHY FREE-RANGE SECTION
   ============================================= */
.why-freerange {
    padding: var(--section-padding-mobile);
    background: var(--vf-green);
    color: white;
}

@media (min-width: 1024px) {
    .why-freerange {
        padding: var(--section-padding);
    }
}

.why-freerange .section-label {
    color: var(--vf-yellow);
}

.why-freerange .section-title {
    color: white;
}

.freerange-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .freerange-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.freerange-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.freerange-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
}

.freerange-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--vf-yellow);
    color: var(--vf-dark);
    border-radius: var(--radius-lg);
}

.freerange-item-icon svg {
    width: 20px;
    height: 20px;
}

.freerange-item-title {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
}

.freerange-item-description {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    opacity: 0.9;
}

.freerange-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.freerange-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: var(--section-padding-mobile);
    background: var(--vf-warm-white);
}

@media (min-width: 1024px) {
    .testimonials {
        padding: var(--section-padding);
    }
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

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

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
}

.testimonial-text {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--vf-beige);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--vf-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 600;
    color: var(--vf-green);
}

.testimonial-name {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.testimonial-location {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: white;
    color: var(--vf-green);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--vf-green);
    color: white;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--vf-beige);
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    width: 24px;
    background: var(--vf-green);
}

/* =============================================
   DELIVERY SECTION
   ============================================= */
.delivery {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .delivery {
        padding: var(--section-padding);
    }
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .delivery-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.delivery-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-info-item {
    display: flex;
    gap: 1rem;
}

.delivery-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-xl);
}

.delivery-info-icon svg {
    width: 24px;
    height: 24px;
}

.delivery-info-title {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.delivery-info-text {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.delivery-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--vf-green-light);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-map-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--vf-green);
}

.delivery-map-placeholder svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

/* Additional Delivery Section Styles */
.delivery-section {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .delivery-section {
        padding: var(--section-padding);
    }
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .delivery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--vf-green-lighter);
    border-radius: var(--radius-lg);
}

.delivery-feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--vf-green);
}

.delivery-feature span {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
    line-height: 1.5;
}

.service-areas {
    margin-top: 2rem;
}

.service-areas h4 {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 1rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--vf-green-light);
    color: var(--vf-green);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.delivery-card {
    background: var(--vf-warm-white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    border: 1px solid var(--vf-beige);
}

.delivery-card-label {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vf-green);
    margin-bottom: 0.5rem;
}

.delivery-card-title {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-dark);
    margin-bottom: 1.25rem;
}

.delivery-card .delivery-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.delivery-card .delivery-info-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--vf-green);
    margin-top: 2px;
}

.delivery-card .delivery-info-item span,
.delivery-card .delivery-info-item a {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
}

.delivery-card .delivery-info-item a {
    color: var(--vf-green);
    text-decoration: none;
}

.delivery-card .delivery-info-item a:hover {
    text-decoration: underline;
}

.delivery-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vf-beige);
}

.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vf-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.delivery-link:hover {
    color: var(--vf-green-dark);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: var(--section-padding);
    }
}

.cta-title {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Heading and Subtitle (aliases for consistency) */
.cta-heading {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .cta-heading {
        font-size: 2.25rem;
    }
}

.cta-subtitle {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Trust Badges */
.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
    color: var(--vf-yellow);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--vf-yellow);
    color: var(--vf-dark);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-cta-secondary svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   FOOTER STYLES
   ============================================= */
.site-footer {
    background: var(--vf-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--vf-green);
}

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

.footer-heading {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vf-yellow);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--vf-green);
}

.footer-contact-item span {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 5rem;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--vf-green);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--vf-green-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-padding {
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .section-padding {
        padding: var(--section-padding);
    }
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation Classes */
.animate-blur-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
}

.animate-blur-reveal.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 639px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .btn-primary-yellow,
    .btn-secondary-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .hero-headline {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

/* =============================================
   HOW IT WORKS SECTION - ENHANCED WITH ANIMATIONS
   ============================================= */
.how-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(180deg, var(--vf-green-lighter) 0%, #e8f5e9 50%, var(--vf-green-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(251, 192, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .how-section {
        padding: var(--section-padding);
    }
}

/* Section Header Animations */
.how-header-animated {
    position: relative;
    z-index: 2;
}

.section-label-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.5rem;
}

.section-label-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--vf-green);
    border-radius: var(--radius-full);
    animation: labelPulse 2s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes labelPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.how-title-animated {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}

.how-title-animated .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordSlide 0.6s ease forwards;
}

.how-title-animated .title-word:nth-child(1) { animation-delay: 0.1s; }
.how-title-animated .title-word:nth-child(2) { animation-delay: 0.2s; }
.how-title-animated .title-word:nth-child(3) { animation-delay: 0.3s; }

.how-title-animated .title-word.highlight {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-medium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes wordSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.how-subtitle-animated {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

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

/* Progress Line */
.how-progress-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: rgba(46, 125, 50, 0.1);
    display: none;
}

@media (min-width: 1024px) {
    .how-progress-line {
        display: block;
    }
}

.how-progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--vf-green) 0%, var(--vf-yellow) 100%);
    transition: height 0.5s ease;
}

/* Steps Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .how-it-works-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }
}

.how-step-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.7s ease forwards;
}

.how-step-wrapper:nth-child(1) { animation-delay: 0.2s; }
.how-step-wrapper:nth-child(2) { animation-delay: 0.4s; }
.how-step-wrapper:nth-child(3) { animation-delay: 0.6s; }
.how-step-wrapper:nth-child(4) { animation-delay: 0.8s; }

@keyframes stepReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Step Cards */
.how-step-card {
    position: relative;
    width: 100%;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .how-step-card {
        padding: 2.5rem;
        min-height: 320px;
    }
}

/* Card Glow Effect */
.how-step-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.how-step-card:hover .how-step-glow {
    opacity: 1;
}

.how-step-glow-gold {
    background: radial-gradient(circle at 50% 0%, rgba(251, 192, 45, 0.15) 0%, transparent 70%);
}

.how-step-green {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, var(--vf-green-lighter) 100%);
    border: 2px solid rgba(46, 125, 50, 0.15);
    box-shadow: 
        0 4px 20px rgba(46, 125, 50, 0.08),
        0 0 0 0 rgba(46, 125, 50, 0);
}

.how-step-green:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(46, 125, 50, 0.15),
        0 0 0 4px rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.3);
}

.how-step-highlighted {
    background: linear-gradient(135deg, #fffef5 0%, #fff8e1 50%, #fffef5 100%);
    border: 2px solid rgba(251, 192, 45, 0.4);
    box-shadow: 
        0 8px 32px rgba(251, 192, 45, 0.15),
        0 0 0 0 rgba(251, 192, 45, 0);
}

.how-step-highlighted:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 24px 48px rgba(251, 192, 45, 0.2),
        0 0 0 4px rgba(251, 192, 45, 0.15);
    border-color: rgba(251, 192, 45, 0.6);
}

/* Number Badge with Ring Animation */
.how-step-number-badge {
    position: absolute;
    top: -0.75rem;
    left: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    background: var(--vf-green);
    color: white;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
    z-index: 10;
}

@media (min-width: 768px) {
    .how-step-number-badge {
        top: -1rem;
        left: -0.75rem;
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.25rem;
    }
}

.badge-text {
    position: relative;
    z-index: 2;
}

.badge-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid currentColor;
    border-radius: inherit;
    opacity: 0;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.how-step-card:hover .badge-ring {
    animation: ringPulse 1s ease-in-out infinite;
}

.how-step-number-yellow {
    background: linear-gradient(135deg, var(--vf-yellow) 0%, #fbbf24 100%);
    color: var(--vf-dark);
    box-shadow: 0 4px 16px rgba(251, 192, 45, 0.4);
}

/* AIRA Badge with Pulse */
.how-step-aira-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--vf-green);
    color: white;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
    z-index: 10;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.how-step-aira-badge img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.how-step-aira-badge .aira-sparkle {
    width: 12px;
    height: 12px;
    color: var(--vf-yellow);
    animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.aira-pulse {
    position: absolute;
    inset: 0;
    background: var(--vf-green);
    border-radius: inherit;
    animation: airaPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes airaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0; }
}

/* Enhanced Icon */
.how-step-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-2xl);
    margin-top: 0.5rem;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .how-step-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
}

.icon-circle {
    position: absolute;
    inset: -3px;
    border: 2px dashed rgba(46, 125, 50, 0.2);
    border-radius: inherit;
    transition: all 0.4s ease;
}

.how-step-card:hover .icon-circle {
    border-color: rgba(46, 125, 50, 0.4);
    animation: iconRotate 10s linear infinite;
}

.icon-circle-gold {
    border-color: rgba(251, 192, 45, 0.3);
}

.how-step-card:hover .icon-circle-gold {
    border-color: rgba(251, 192, 45, 0.6);
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.how-step-card:hover .how-step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.2);
}

.how-step-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .how-step-icon svg {
        width: 32px;
        height: 32px;
    }
}

.how-step-icon-yellow {
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.2) 0%, rgba(251, 192, 45, 0.1) 100%);
    color: #e6a800;
}

/* Step Title */
.how-step-title {
    margin-top: 1.25rem;
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.3;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .how-step-title {
        font-size: 1.375rem;
    }
}

.how-step-title-large {
    font-size: 1.375rem;
}

@media (min-width: 768px) {
    .how-step-title-large {
        font-size: 1.625rem;
    }
}

.how-step-card:hover .how-step-title {
    color: var(--vf-green-dark);
}

/* Step Description */
.how-step-description {
    margin-top: 0.75rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.65;
    flex: 1;
}

@media (min-width: 768px) {
    .how-step-description {
        font-size: 1rem;
    }
}

/* Enhanced Note Box */
.how-step-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(46, 125, 50, 0.03) 100%);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.how-step-card:hover .how-step-note {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.12) 0%, rgba(46, 125, 50, 0.05) 100%);
    border-color: rgba(46, 125, 50, 0.25);
}

.note-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.note-icon-wrapper img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
}

.note-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--vf-green);
    color: white;
    font-size: 0.5rem;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

.how-step-note p {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--vf-green-dark);
    line-height: 1.5;
}

/* Step Footer */
.how-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.step-duration {
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vf-green);
    background: var(--vf-green-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.step-indicator {
    display: flex;
    gap: 0.375rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: rgba(46, 125, 50, 0.2);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--vf-green);
    width: 24px;
}

/* Step Complete Badge */
.how-step-complete {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: completeBounce 2s ease-in-out infinite;
}

.how-step-complete svg {
    width: 16px;
    height: 16px;
}

@keyframes completeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Background Number */
.how-step-bg-number {
    position: absolute;
    bottom: -1rem;
    right: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(46, 125, 50, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .how-step-bg-number {
        font-size: 8rem;
        bottom: -0.5rem;
        right: 1rem;
    }
}

.how-step-card:hover .how-step-bg-number {
    color: rgba(46, 125, 50, 0.08);
    transform: scale(1.05);
}

/* Step Connector */
.step-connector {
    position: absolute;
    display: none;
    color: rgba(46, 125, 50, 0.2);
}

@media (min-width: 1024px) {
    .step-connector {
        display: block;
        width: 3rem;
        top: 50%;
    }
    
    .step-connector-right {
        right: -1.5rem;
        transform: translateY(-50%);
    }
    
    .step-connector-left {
        left: -1.5rem;
        transform: translateY(-50%);
    }
}

.step-connector svg {
    width: 100%;
    height: 20px;
}

/* CTA Button */
.how-cta {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1s;
}

.how-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.how-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.4);
}

.how-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.how-cta-btn:hover svg {
    transform: translateX(4px);
}

/* =============================================
   MOBILE BOTTOM ACTION BAR
   ============================================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    /* Add padding to body to account for fixed bottom bar */
    body {
        padding-bottom: 70px;
    }
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-action-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-call-btn {
    background: var(--vf-green-light);
    color: var(--vf-green);
    border: 2px solid var(--vf-green);
}

.mobile-call-btn:hover {
    background: var(--vf-green);
    color: white;
}

.mobile-order-btn {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
}

.mobile-order-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Hide WhatsApp float on mobile (we have bottom bar instead) */
@media (max-width: 767px) {
    .whatsapp-float {
        display: none !important;
    }
    
    .back-to-top {
        bottom: 5rem;
        right: 1rem;
    }
}

/* =============================================
   COLORFUL INSTAGRAM ICON
   ============================================= */
.social-icon-instagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xl);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transition: all var(--transition-base);
}

.social-icon-instagram svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.social-icon-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(188, 24, 136, 0.3);
}

.social-icon-instagram:hover svg {
    stroke: white;
}

.social-icon-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xl);
    background: #1877F2;
    color: white;
    transition: all var(--transition-base);
}

.social-icon-facebook svg {
    width: 24px;
    height: 24px;
}

.social-icon-facebook:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
}

/* =============================================
   RESPONSIVE IMPROVEMENTS
   ============================================= */
@media (max-width: 767px) {
    /* Footer adjustments for mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    /* Section header adjustments */
    .section-heading {
        font-size: 1.75rem;
    }
    
    /* Delivery section mobile */
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-card {
        margin-top: 1.5rem;
    }
    
    /* CTA section mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-step-card {
        max-width: 100%;
    }
}

/* =============================================
   FREERANGE SECTION - NEW LAYOUT (Matches Demo)
   ============================================= */
.freerange-section {
    padding: var(--section-padding-mobile);
    background: #f8f9fa;
}

@media (min-width: 1024px) {
    .freerange-section {
        padding: var(--section-padding);
    }
}

.freerange-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--vf-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    margin: 1.5rem auto 2rem;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.2);
}

.freerange-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.freerange-banner-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    stroke: white;
}

.freerange-banner-text {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
}

.freerange-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .freerange-grid {
        grid-template-columns: 60% 40%;
        gap: 3rem;
        align-items: start;
    }
}

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

.freerange-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.freerange-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.freerange-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-lg);
}

.stat-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.stat-value-gold {
    color: #FFC107;
}

.stat-value-green {
    color: var(--vf-green);
}

.stat-value-red {
    color: #DC3545;
}

.stat-title {
    margin-top: 0.25rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.stat-text {
    margin-top: 0.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* =============================================
   DELIVERY SECTION - ENHANCED (Matches Demo)
   ============================================= */
.delivery-section {
    padding: var(--section-padding-mobile);
    background: #FFF8E7;
}

@media (min-width: 1024px) {
    .delivery-section {
        padding: var(--section-padding);
    }
}

.delivery-section .section-label {
    background: var(--vf-green-light);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
}

.service-areas {
    margin-top: 1.5rem;
}

.service-areas h4 {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 1rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #F5F5F5;
    color: var(--vf-dark);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.area-tag:hover {
    background: var(--vf-green-light);
    color: var(--vf-green);
}

.delivery-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .delivery-card {
        padding: 2rem;
    }
}

.delivery-card-label {
    display: inline-block;
    background: var(--vf-green-light);
    color: var(--vf-green);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.delivery-card-title {
    margin-top: 0.75rem;
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vf-dark);
}

@media (min-width: 768px) {
    .delivery-card-title {
        font-size: 1.75rem;
    }
}

.delivery-card .delivery-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.delivery-card .delivery-info-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.delivery-card .delivery-info-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--vf-green);
    margin-top: 2px;
}

.delivery-card .delivery-info-item span,
.delivery-card .delivery-info-item a {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
}

.delivery-card .delivery-info-item a {
    color: var(--vf-green);
    font-weight: 500;
    transition: color 0.2s ease;
}

.delivery-card .delivery-info-item a:hover {
    color: var(--vf-green-dark);
}

.delivery-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.delivery-link svg {
    width: 16px;
    height: 16px;
}

.delivery-link-primary {
    background: var(--vf-green);
    color: white;
}

.delivery-link-primary:hover {
    background: var(--vf-green-dark);
    transform: translateY(-1px);
}

.delivery-link-secondary {
    background: var(--vf-green-light);
    color: var(--vf-green);
}

.delivery-link-secondary:hover {
    background: var(--vf-green);
    color: white;
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .site-header,
    .scroll-progress,
    .whatsapp-float,
    .back-to-top,
    .scroll-indicator,
    .mobile-bottom-bar {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        page-break-inside: avoid;
    }
    
    body {
        background: white;
        color: black;
        padding-bottom: 0;
    }
}

/* =============================================
   UTILITY CLASSES - VISIBILITY
   ============================================= */
.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: flex;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }
    
    .mobile-only {
        display: none !important;
    }
}
