/* ===== CSS VARIABLES & RESET ===== */
:root {
    --dark-green: #03602e;
    --light-green: #5EC79C;
    --accent-orange: #ffc200;
    --white: #FFFFFF;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===== LEAF ANIMATIONS ===== */
@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes leafUnfold {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes leafFlutter {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

@keyframes slideInFromTop {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ===== HEADER NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
}

.header.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.header.sticky .logo {
    color: var(--dark-green);
}

.leaf-logo {
    position: relative;
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.leaf-logo:hover {
    transform: scale(1.1);
}

.leaf {
    position: absolute;
    width: 20px;
    height: 30px;
    border-radius: 0 100% 0 100%;
    transition: var(--transition);
}

.leaf-orange {
    background: var(--accent-orange);
    left: 0;
    transform: rotate(-45deg);
}

.leaf-green {
    background: var(--dark-green);
    right: 0;
    transform: rotate(45deg);
}

.leaf:hover {
    animation: leafFloat 2s ease-in-out infinite;
}

/* ===== DESKTOP NAVIGATION ===== */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.header.sticky .nav-link {
    color: var(--dark-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-orange);
}

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



.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid var(--accent-orange);
    color: var(--dark-green);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 120px;
}

.header.sticky .action-btn {
    background: var(--white);
    color: var(--dark-green);
    border: 2px solid var(--accent-orange);
}

.search-supplier-btn {
    background: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    color: var(--dark-green);
    border-radius: 0 50px 0 50px;
    width: 70px;
    height: 40px;
    animation: expandWidth 0.8s ease 2s forwards;
}

@keyframes expandWidth {
    from { width: 60px; }
    to { width: 400px; }
}

.search-buyer-btn {
    background: var(--dark-green);
    border: 2px solid var(--dark-green);
    color: var(--accent-orange);
    border-radius: 50px 0 50px 0;
    width: 70px;
    height: 40px;
}

.action-btn.supplier-btn {
    background: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    color: var(--dark-green);
    border-radius: 0 50px 0 50px;
}



.action-btn.buyer-btn {
    background: var(--dark-green);
    border: 2px solid var(--dark-green);
    color: var(--accent-orange);
    border-radius: 50px 0 50px 0;
}

.header.sticky .action-btn.supplier-btn {
    background: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    color: var(--dark-green);
    border-radius: 0 50px 0 50px;
}

.header.sticky .action-btn.buyer-btn {
    background: var(--dark-green);
    border: 2px solid var(--dark-green);
    color: var(--accent-orange);
    border-radius: 50px 0 50px 0;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-btn.supplier-btn:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--accent-orange);
}

.action-btn.buyer-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--dark-green);
}

.action-btn i {
    font-size: 16px;
}

/* ===== MOBILE MENU TOGGLE (DEPRECATED) ===== */
.mobile-menu-toggle {
    display: none !important; /* Hidden as we now use modern-menu-btn */
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-header .logo {
    color: var(--white);
}

.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 30px;
}

.mobile-nav-section {
    margin-bottom: 40px;
}

.mobile-nav-section h3 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRight 0.5s ease forwards;
}

.mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.3s; }

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
    border-radius: 8px;
}

.mobile-nav-link i {
    font-size: 20px;
    opacity: 0.8;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
}

.mobile-action-btn:nth-child(2) { animation-delay: 0.4s; }
.mobile-action-btn:nth-child(3) { animation-delay: 0.5s; }

.mobile-action-btn.supplier-mobile {
    background: rgba(245, 176, 98, 0.2);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    border-radius: 0 15px 0 15px;
}

.mobile-action-btn.buyer-mobile {
    background: rgba(3, 96, 46, 0.2);
    border: 2px solid var(--dark-green);
    color: var(--white);
    border-radius: 15px 0 15px 0;
}

.mobile-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-action-btn.supplier-mobile:hover {
    background: var(--accent-orange);
    color: var(--dark-green);
}

.mobile-action-btn.buyer-mobile:hover {
    background: var(--dark-green);
    color: var(--accent-orange);
}

.mobile-action-btn i {
    font-size: 24px;
    opacity: 0.9;
}

.btn-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.btn-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 96, 46, 0.4) 0%, rgba(94, 199, 156, 0.3) 100%),
                url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 96, 46, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-badge i {
    color: var(--accent-orange);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
}

.title-highlight {
    display: block;
    color: var(--accent-orange);
    font-size: clamp(2rem, 5vw, 3.5rem);
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.title-main {
    display: block;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

/* ===== HERO SEARCH ===== */
.hero-search {
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.search-bar {
    display: flex;
    background: var(--white);
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.search-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 15px;
}

.search-icon {
    color: var(--gray-medium);
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 20px 0;
    color: var(--dark-green);
}

.search-input::placeholder {
    color: var(--gray-medium);
}

.search-button {
    background: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-button:hover {
    background: var(--accent-orange);
}

.search-suggestions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.suggestion-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
    z-index: 10;
    width: auto;
    text-align: center;
    pointer-events: none;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    margin: 0 auto;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 26px; opacity: 0; }
}

.scroll-indicator span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.8px;
    white-space: nowrap;
    display: block;
    margin: 0 auto;
}

/* ===== HERO STATS (SIMPLIFIED) ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BROWSE CATEGORIES (MINIMAL & COOL) ===== */
.browse-categories {
    padding: 50px 0;
    background: var(--white);
}

.browse-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.02);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #6b7280;
}

.price-range {
    font-weight: 500;
}

.supplier-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.supplier-badge i {
    font-size: 0.75rem;
    color: var(--accent-orange);
}

.explore-btn {
    background: var(--dark-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.explore-btn:hover {
    background: var(--accent-orange);
}

.hover-leaves {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .hover-leaves {
    opacity: 1;
    animation: leafFlutter 2s ease-in-out infinite;
}

.hover-leaf {
    width: 20px;
    height: 25px;
    background: var(--accent-orange);
    border-radius: 0 100% 0 100%;
    transform: rotate(-45deg);
}

/* ===== STATS BAR (IMPROVED LAYOUT) ===== */
.stats-bar {
    background: var(--dark-green);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 5px;
    display: block;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    font-size: 1.8rem;
    opacity: 0.4;
    color: var(--accent-orange);
}

/* ===== FEATURE BLOCKS (BETTER ALIGNMENT) ===== */
.feature-blocks {
    padding: 100px 0;
    background: var(--white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 20px;
}

.feature-content h2 {
    font-size: 2.4rem;
    color: var(--dark-green);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.read-more-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--dark-green);
    gap: 12px;
}

.feature-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* ===== FEATURE GRID (SOLID & IMPACTFUL DESIGN) ===== */
.feature-grid {
    background: linear-gradient(135deg, var(--dark-green) 0%, #024a2a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-grid h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.grid-item {
    text-align: center;
    padding: 70px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 176, 98, 0.1) 0%, rgba(94, 199, 156, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover::before {
    opacity: 1;
}

.grid-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 176, 98, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.grid-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e09a4a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 176, 98, 0.3);
}

.grid-item:hover .grid-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(245, 176, 98, 0.4);
}

.grid-icon i {
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.grid-item h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.grid-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== TRUST & ASSURANCE (IMPROVED CENTERING) ===== */
.trust-assurance {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.trust-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 96, 46, 0.7) 0%, rgba(94, 199, 156, 0.5) 100%),
                url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
}

.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.trust-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.trust-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-header-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.verified-card .card-icon {
    background: rgba(94, 199, 156, 0.2);
    border: 2px solid var(--light-green);
}

.verified-card .card-icon i {
    color: var(--light-green);
    font-size: 24px;
}

.assurance-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
}

.assurance-card .card-icon i {
    color: var(--white);
    font-size: 24px;
}

.card-header {
    flex: 1;
}

.card-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.card-subtitle {
    color: var(--accent-orange);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.card-content {
    margin-bottom: 32px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.watch-video-btn {
    background: var(--accent-orange);
    color: var(--dark-green);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 176, 98, 0.3);
}

.watch-video-btn:hover {
    background: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 176, 98, 0.4);
}

.watch-video-btn i {
    font-size: 12px;
}

.learn-more-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.learn-more-link:hover::after {
    width: 100%;
}

.learn-more-link:hover {
    color: var(--white);
}

/* ===== WHY CHOOSE (BETTER LAYOUT) ===== */
.why-choose {
    background: var(--gray-light);
    padding: 100px 0;
    text-align: center;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.why-panel {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-image {
    height: 250px;
    overflow: hidden;
}

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

.why-panel:hover .why-image img {
    transform: scale(1.1);
}

.why-content {
    padding: 30px;
}

.why-content h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.why-content p {
    color: var(--gray-medium);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta-btn {
    background: var(--light-green);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.supplier-cta:hover {
    background: var(--accent-orange);
}

/* ===== TESTIMONIALS (CENTERED) ===== */
.testimonials {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--light-green);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-medium);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--dark-green);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ===== FOOTER (SIMPLE & SOLID) ===== */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.footer-logo .logo-img {
    width: 200px;
    height: 40px;
    object-fit: contain;
    display: block;
    max-width: 100%;
    opacity: 1;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

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

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

/* ===== MARKET WIDGET ===== */
.market-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    transition: var(--transition);
    width: 60px;
    height: 60px;
}

.market-widget.expanded {
    width: 300px;
    height: auto;
}

.widget-toggle {
    width: 60px;
    height: 60px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.widget-toggle:hover {
    background: var(--light-green);
}

.widget-content {
    padding: 20px;
    display: none;
}

.market-widget.expanded .widget-content {
    display: block;
}

.widget-content h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.ticker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.ticker-item:last-child {
    border-bottom: none;
}

.commodity {
    font-weight: 600;
    color: var(--dark-green);
}

.price.up {
    color: var(--light-green);
}

.price.down {
    color: #e74c3c;
}

.change {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        height: 100vh;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 30px;
    }
    
    .title-highlight {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .title-sub {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .hero-search {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-input-group {
        padding: 15px 20px;
    }
    
    .search-input {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .search-button {
        padding: 15px 20px;
        border-radius: 0 0 20px 20px;
        justify-content: center;
    }
    
    .search-suggestions {
        margin-top: 15px;
        gap: 10px;
        justify-content: center;
    }
    
    .suggestion-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-stats {
        gap: 30px;
        margin-bottom: 40px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .scroll-indicator {
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-indicator span {
        font-size: 13px;
    }
    
    .mobile-menu {
        max-width: 100%;
        width: 100%;
    }
    
    .mobile-menu-header {
        padding: 15px 20px;
    }
    
    .mobile-nav {
        padding: 20px;
    }
    
    .mobile-nav-section {
        margin-bottom: 30px;
    }
    
    .mobile-action-btn {
        padding: 15px;
        border-radius: 12px;
    }
    
    .btn-title {
        font-size: 15px;
    }
    
    .btn-subtitle {
        font-size: 13px;
    }
    
    /* Browse Categories */
    .browse-categories {
        padding: 50px 0;
    }
    
    .browse-categories h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .category-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Feature Blocks */
    .feature-blocks {
        padding: 80px 0;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
    
    .feature-content {
        text-align: center;
        padding: 0;
    }
    
    .feature-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .feature-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Feature Grid */
    .feature-grid {
        padding: 60px 0;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .grid-item {
        padding: 40px 25px;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 0;
    }
    
    .grid-item:first-child {
        border-radius: 12px 12px 0 0;
    }
    
    .grid-item:last-child {
        border-radius: 0 0 12px 12px;
    }
    
    .grid-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .grid-icon i {
        font-size: 1.5rem;
    }
    
    .grid-item h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .grid-item p {
        font-size: 0.9rem;
    }
    
    /* Trust & Assurance */
    .trust-assurance {
        padding: 80px 0;
        min-height: auto;
    }
    
    .trust-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .trust-header h2 {
        font-size: 2.5rem;
        color: var(--white);
        font-weight: 600;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .trust-card {
        padding: 30px 20px;
        margin: 0;
        border-radius: 20px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .card-header-row {
        gap: 15px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 20px;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    .card-content {
        margin: 25px 0;
    }
    
    .card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .watch-video-btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .learn-more-link {
        text-align: center;
        font-size: 13px;
    }
    
    /* Why Choose */
    .why-choose {
        padding: 80px 0;
    }
    
    .why-choose h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .why-panel {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-content {
        padding: 25px 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 40px 0;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-label {
        font-size: 13px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    /* Market Widget */
    .market-widget {
        right: 15px;
        bottom: 15px;
    }
    
    .market-widget.expanded {
        width: calc(100vw - 30px);
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header.sticky {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .leaf-logo {
        width: 32px;
        height: 32px;
    }
    
    .leaf {
        width: 16px;
        height: 24px;
    }
    
    .hero {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .title-highlight {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    
    .title-sub {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        margin-top: 10px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .hero-search {
        margin-bottom: 35px;
    }
    
    .search-input-group {
        padding: 12px 15px;
    }
    
    .search-input {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 25px;
        margin-bottom: 35px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        left: auto;
    }
    
    .scroll-indicator span {
        font-size: 12px;
    }
    
    .mobile-menu-header {
        padding: 12px 15px;
    }
    
    .mobile-nav {
        padding: 15px;
    }
    
    .mobile-nav-section {
        margin-bottom: 25px;
    }
    
    .mobile-nav-link {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .mobile-action-btn {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .btn-title {
        font-size: 14px;
    }
    
    .btn-subtitle {
        font-size: 12px;
    }
    
    .browse-categories {
        padding: 50px 0;
    }
    
    .browse-categories h2,
    .why-choose h2,
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .categories-grid,
    .why-grid,
    .testimonials-grid {
        padding: 0 15px;
        gap: 16px;
    }
    
    .category-card,
    .why-panel,
    .testimonial-card {
        max-width: 350px;
    }
    
    .feature-blocks {
        padding: 60px 0;
    }
    
    .feature-block {
        padding: 0 15px;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .feature-content h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .feature-grid {
        padding: 60px 0;
    }
    
    .grid-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .grid-item {
        padding: 25px 15px;
        max-width: 320px;
    }
    
    .grid-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .grid-icon i {
        font-size: 1.5rem;
    }
    
    .grid-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .trust-assurance {
        padding: 60px 0;
    }
    
    .trust-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .trust-header h2 {
        font-size: 2.5rem;
        color: var(--white);
        font-weight: 600;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .trust-cards {
        padding: 0 15px;
        gap: 25px;
    }
    
    .trust-card {
        padding: 25px 15px;
        max-width: 380px;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .watch-video-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .why-content {
        padding: 20px 15px;
    }
    
    .why-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .cta-buttons {
        padding: 0 15px;
        gap: 15px;
    }
    
    .cta-btn {
        max-width: 280px;
        padding: 12px 25px;
    }
    
    .stats-bar {
        padding: 35px 0;
    }
    
    .stats-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-item .stat-label {
        font-size: 12px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .market-widget.expanded {
        width: calc(100vw - 20px);
        max-width: 280px;
    }
    
    .widget-content {
        padding: 15px;
    }
    
    .widget-content h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .ticker-item {
        padding: 6px 0;
    }
    
    .commodity {
        font-size: 14px;
    }
    
    .price {
        font-size: 14px;
    }
    
    .change {
        font-size: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-actions {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 3.8rem);
    }
    
    .title-highlight {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-block {
        gap: 40px;
    }
    
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-background {
        background-attachment: scroll !important;
    }
}

/* Focus styles for accessibility */
button:focus, input:focus, a:focus {
    outline: none;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.4);
    }
    
    .header {
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 2px solid var(--dark-green);
    }
    
    .action-btn, .mobile-action-btn {
        border-width: 2px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .mobile-menu-overlay, .market-widget, .scroll-indicator {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        background: var(--light-green) !important;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* ===== MOBILE SEARCH SECTION ===== */
.mobile-search-section {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.mobile-search-section h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.mobile-search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.mobile-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.mobile-search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
}

.mobile-search-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: color 0.2s ease;
}

.mobile-search-bar:focus-within .mobile-search-icon {
    color: var(--white);
}

.mobile-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 16px;
    padding: 18px 0;
    font-weight: 500;
    will-change: auto;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-search-clear {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0);
}

.mobile-search-clear.show {
    opacity: 1;
    transform: scale(1);
}

.mobile-search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.mobile-search-button {
    background: var(--accent-orange);
    border: none;
    color: var(--white);
    padding: 18px 25px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.mobile-search-button:hover {
    background: var(--dark-green);
}

.mobile-search-button:active {
    transform: scale(0.95);
}

/* ===== MOBILE SEARCH CATEGORIES ===== */
.mobile-search-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.mobile-category-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-category-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-category-chip:hover::before {
    left: 100%;
}

.mobile-category-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.mobile-category-chip.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 176, 98, 0.4);
}

.mobile-category-chip i {
    font-size: 16px;
    opacity: 0.9;
}

.mobile-category-chip span {
    font-weight: 600;
}

/* ===== MOBILE POPULAR SEARCHES ===== */
.mobile-popular-searches {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

.popular-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-popular-tag {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-popular-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.mobile-popular-tag:hover::before {
    width: 100px;
    height: 100px;
    opacity: 0.2;
}

.mobile-popular-tag:hover {
    background: rgba(245, 176, 98, 0.2);
    border-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-1px);
}

.mobile-popular-tag:active {
    transform: translateY(0) scale(0.95);
}

/* ===== MOBILE SEARCH ANIMATIONS ===== */
@keyframes searchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mobile-search-input:focus + .mobile-search-clear {
    animation: searchPulse 2s ease-in-out infinite;
}

.mobile-search-button.loading {
    background: var(--light-green);
    pointer-events: none;
}

.mobile-search-button.loading i {
    animation: spin 1s linear infinite;
}

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

@keyframes mobileRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== MOBILE SEARCH RESPONSIVE ===== */
@media (max-width: 480px) {
    .mobile-search-section {
        padding: 20px 20px;
    }
    
    .mobile-search-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .mobile-search-input-group {
        padding: 0 15px;
    }
    
    .mobile-search-input {
        padding: 15px 0;
        font-size: 15px;
    }
    
    .mobile-search-button {
        padding: 15px 20px;
        min-width: 55px;
    }
    
    .mobile-category-chip {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .mobile-category-chip i {
        font-size: 14px;
    }
    
    .mobile-popular-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .popular-label {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* ===== MOBILE SEARCH FOCUS STATES ===== */
.mobile-search-input:focus {
    color: var(--white);
}

.mobile-category-chip:focus {
    outline: none;
    outline-offset: 2px;
}

.mobile-popular-tag:focus {
    outline: none;
    outline-offset: 2px;
}

/* ===== MOBILE SEARCH LOADING STATES ===== */
/* Removed .mobile-search-bar.searching animations that caused flickering */

/* ===== MODERN MENU BUTTON ===== */
.modern-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.header.sticky .modern-menu-btn {
    background: rgba(3, 96, 46, 0.1);
    border: 1px solid rgba(3, 96, 46, 0.2);
    color: var(--dark-green);
}

.modern-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header.sticky .modern-menu-btn:hover {
    background: rgba(3, 96, 46, 0.15);
    color: var(--dark-green);
}

.menu-icon {
    width: 18px;
    height: 14px;
    position: relative;
    transition: var(--transition);
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.header.sticky .menu-icon span {
    background: var(--dark-green);
}

.menu-icon span:nth-child(1) {
    top: 0px;
    width: 100%;
}

.menu-icon span:nth-child(2) {
    top: 6px;
    width: 80%;
}

.menu-icon span:nth-child(3) {
    top: 12px;
    width: 60%;
}

.modern-menu-btn.active .menu-icon span:nth-child(1) {
    top: 6px;
    transform: rotate(135deg);
    width: 100%;
}

.modern-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.modern-menu-btn.active .menu-icon span:nth-child(3) {
    top: 6px;
    transform: rotate(-135deg);
    width: 100%;
}

.menu-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.modern-menu-btn:hover .menu-icon span {
    background: var(--accent-orange);
}

.header.sticky .modern-menu-btn:hover .menu-icon span {
    background: var(--accent-orange);
} 

/* ===== SEARCH ICON ANIMATION ===== */
@keyframes searchIconAppear {
    0% { 
        opacity: 0; 
        transform: scale(0.5) rotate(-180deg); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(0.8) rotate(-90deg); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

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

.search-buyer-btn span {
    opacity: 0;
    animation: searchIconAppear 0.8s ease-out 2s forwards;
}

/* Agricultural Divider */
.agricultural-divider {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8f0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
}

/* Floating Leaves Animation */
.earth-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    font-size: 24px;
    opacity: 0.7;
    animation: floatAndSway 8s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.leaf-2 {
    top: 30%;
    left: 25%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.leaf-3 {
    top: 15%;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.leaf-4 {
    top: 25%;
    left: 75%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.leaf-5 {
    top: 35%;
    left: 90%;
    animation-delay: 4s;
    animation-duration: 6s;
}

@keyframes floatAndSway {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) rotate(8deg);
        opacity: 0.9;
    }
}

/* Tree Silhouettes */
.ground-line {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.tree-silhouette {
    font-size: 40px;
    opacity: 0.6;
    animation: gentleSway 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.tree-1 {
    animation-delay: 0s;
}

.tree-2 {
    animation-delay: 1s;
    font-size: 45px;
}

.tree-3 {
    animation-delay: 2s;
}

@keyframes gentleSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Flowing Waves */
.flowing-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.3;
}

.wave-svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    animation: waveFlow 6s ease-in-out infinite;
}

@keyframes waveFlow {
    0%, 100% {
        d: path("M0,60 C300,20 600,100 900,60 C1050,30 1150,80 1200,60 L1200,120 L0,120 Z");
    }
    50% {
        d: path("M0,80 C300,40 600,120 900,80 C1050,50 1150,100 1200,80 L1200,120 L0,120 Z");
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .agricultural-divider {
        height: 150px;
    }
    
    .floating-leaf {
        font-size: 18px;
    }
    
    .tree-silhouette {
        font-size: 30px;
    }
    
    .tree-2 {
        font-size: 35px;
    }
    
    .ground-line {
        bottom: 20px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .agricultural-divider {
        height: 120px;
    }
    
    .floating-leaf {
        font-size: 16px;
    }
    
    .tree-silhouette {
        font-size: 25px;
    }
    
    .tree-2 {
        font-size: 28px;
    }
}

/* Simple Cool Divider */
.cool-divider {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divider-content {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-lines {
    position: relative;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    animation: lineGrow 3s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    animation-delay: 0s;
}

.line-2 {
    width: 400px;
    opacity: 0.6;
    animation-delay: 1s;
}

.line-3 {
    width: 600px;
    opacity: 0.3;
    animation-delay: 2s;
}

.divider-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: relative;
    animation: dotPulse 2s ease-in-out infinite;
}

.center-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0.5;
    animation: ringExpand 3s ease-in-out infinite;
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(0.3);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

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

@keyframes ringExpand {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cool-divider {
        height: 80px;
    }
    
    .divider-content {
        max-width: 600px;
        height: 40px;
    }
    
    .line-1 {
        width: 150px;
    }
    
    .line-2 {
        width: 300px;
    }
    
    .line-3 {
        width: 450px;
    }
    
    .center-dot {
        width: 10px;
        height: 10px;
    }
    
    .center-dot::before {
        width: 16px;
        height: 16px;
        top: -3px;
        left: -3px;
    }
}

@media (max-width: 480px) {
    .cool-divider {
        height: 60px;
    }
    
    .divider-content {
        max-width: 400px;
        height: 30px;
    }
    
    .line-1 {
        width: 100px;
    }
    
    .line-2 {
        width: 200px;
    }
    
    .line-3 {
        width: 300px;
    }
    
    .center-dot {
        width: 8px;
        height: 8px;
    }
    
    .center-dot::before {
        width: 14px;
        height: 14px;
        top: -3px;
        left: -3px;
    }
}

/* Cool Full Width Divider */
.cool-divider {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 30%, #ffffff 70%, #f0f8f0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main flowing line across full width */
.main-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 20%, var(--accent-orange) 50%, var(--primary-green) 80%, transparent 100%);
    transform: translateY(-50%);
    animation: lineFlow 4s ease-in-out infinite;
}

.main-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, rgba(46, 125, 50, 0.3) 20%, rgba(255, 152, 0, 0.3) 50%, rgba(46, 125, 50, 0.3) 80%, transparent 100%);
    animation: lineFlow 4s ease-in-out infinite reverse;
}

@keyframes lineFlow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
}

@keyframes lineFlowReverse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
}

/* Wave effect at bottom */
.wave-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg, transparent 0%, rgba(94, 199, 156, 0.1) 50%, transparent 100%);
    animation: waveMove 8s ease-in-out infinite;
}

.feature-grid {
    padding: 50px 0;
}

.grid-container {
    padding: 0 15px;
    gap: 40px;
}

.grid-item {
    padding: 35px 20px;
    max-width: 350px;
    border-radius: 0;
}

.grid-item:first-child {
    border-radius: 12px 12px 0 0;
}

.grid-item:last-child {
    border-radius: 0 0 12px 12px;
}

.grid-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
}

.grid-icon i {
    font-size: 1.4rem;
}

.grid-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.grid-item p {
    font-size: 0.85rem;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.wave-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg, transparent 0%, rgba(94, 199, 156, 0.1) 50%, transparent 100%);
    animation: waveMove 8s ease-in-out infinite;
}