/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --green-darkest: #0d2b12;
    --green-dark:    #1a5c26;
    --green-deep:    #236b2f;
    --green-main:    #2d8b3e;
    --green-medium:  #3fa850;
    --green-light:   #5dc96e;
    --green-pale:    #a8e6b4;
    --green-tint:    #e8f5eb;
    --green-ultra:   #f1faf2;
    --leaf-bright:   #7ec822;
    --leaf-light:    #a3dc35;
    --white:         #ffffff;
    --off-white:     #f8fdf8;
    --dark:          #0d2b12;
    --text-dark:     #142b18;
    --text-mid:      #2e5935;
    --text-light:    #4d7a57;
    --shadow-xs:     0 1px 6px rgba(13,43,18,0.06);
    --shadow-sm:     0 3px 16px rgba(13,43,18,0.09);
    --shadow-md:     0 10px 40px rgba(13,43,18,0.14);
    --shadow-lg:     0 24px 64px rgba(13,43,18,0.2);
    --radius:        14px;
    --radius-lg:     22px;
    --radius-pill:   999px;
    --transition:    all 0.28s ease;
    --nav-h:         68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ===== NAV ===== */
.top-nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 43, 18, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(93, 201, 110, 0.18);
    transition: var(--transition);
    height: var(--nav-h);
}
.top-nav.scrolled {
    box-shadow: 0 4px 24px rgba(13,43,18,0.35);
}
.top-nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 100%;
}
.top-nav .brand {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: -0.01em;
}
.top-nav .brand .brand-accent { color: var(--leaf-bright); }
.top-nav .nav-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(126,200,34,0.55);
    box-shadow: 0 0 0 3px rgba(126,200,34,0.12);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.top-nav .nav-links a {
    color: rgba(255,255,255,0.78);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.top-nav .nav-links a:hover { color: #fff; background: rgba(93,201,110,0.16); }
.top-nav .nav-links a.active { color: var(--leaf-bright); background: rgba(126,200,34,0.1); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    border: none;
    background: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.slider { position: absolute; inset: 0; overflow: hidden; }
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 8s ease;
}
.slide.active { opacity: 1; transform: scale(1); }
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(13,43,18,0.78) 0%,
        rgba(26,92,38,0.62) 50%,
        rgba(13,43,18,0.82) 100%
    );
    z-index: 1;
}
.hero .overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 75%, rgba(126,200,34,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 18%, rgba(93,201,110,0.12) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 2.5rem 1.5rem;
    animation: heroFadeUp 0.9s ease forwards;
}
/* Dynamic slide content */
.slide-content {
    display: none;
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.slide-content.active {
    display: block;
    animation: heroFadeUp 0.7s ease forwards;
}
/* Only one dots container visible */
.slide-content .slider-dots { display: flex; }
.slide-content:not(.active) .slider-dots { display: none; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(126,200,34,0.14);
    border: 1px solid rgba(126,200,34,0.38);
    color: var(--leaf-light);
    padding: 0.42rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    backdrop-filter: blur(8px);
}
.hero-badge::before { content: '🍃'; font-size: 0.9rem; }
.logo {
    width: 106px;
    height: 106px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(126,200,34,0.55);
    box-shadow: 0 0 0 8px rgba(126,200,34,0.1), 0 24px 48px rgba(0,0,0,0.32);
    margin: 0 auto 1.4rem;
    display: block;
    transition: transform 0.4s ease;
}
.logo:hover { transform: scale(1.05); }
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .h1-highlight {
    display: block;
    background: linear-gradient(90deg, var(--leaf-bright), var(--leaf-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.slider-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.slider-dots button.active {
    background: var(--leaf-bright);
    width: 26px;
    border-radius: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--green-deep), var(--leaf-bright));
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 20px rgba(45,139,62,0.32);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(45,139,62,0.48);
}
.btn-ghost {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.5);
    box-shadow: none;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
    box-shadow: none;
    transform: translateY(-2px);
}
.btn.small {
    padding: 0.48rem 1.1rem;
    font-size: 0.8rem;
}
.btn-dark {
    background: var(--green-darkest);
    box-shadow: 0 4px 16px rgba(13,43,18,0.3);
}
.btn-dark:hover {
    background: var(--green-dark);
    box-shadow: 0 8px 28px rgba(13,43,18,0.45);
}

/* ===== STATS BAR ===== */
.stats-section {
    background: linear-gradient(135deg, var(--green-darkest), var(--green-dark));
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(126,200,34,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.stats-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.stat-item {
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
.stat-item:hover {
    background: rgba(126,200,34,0.08);
    border-color: rgba(126,200,34,0.2);
    transform: translateY(-3px);
}
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--leaf-bright);
    line-height: 1.1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.62);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 5rem 1.5rem;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-tag {
    display: inline-block;
    background: var(--green-tint);
    color: var(--green-dark);
    padding: 0.35rem 1.05rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(45,139,62,0.15);
}
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.9rem;
    letter-spacing: -0.025em;
}
.section-header p {
    font-size: 1.02rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}
/* Legacy section h2 for compatibility */
.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}
.intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-content .badge {
    display: inline-block;
    background: var(--green-tint);
    color: var(--green-dark);
    padding: 0.35rem 1.05rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(45,139,62,0.15);
}
.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.025em;
    text-align: left;
}
.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.about-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding-left: 0;
}
.about-content ul li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.92rem;
    list-style: none;
}
.about-content ul li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--green-tint);
    color: var(--green-dark);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid rgba(45,139,62,0.2);
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: var(--green-tint);
    z-index: 0;
}
.about-image {
    position: relative;
    z-index: 1;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--green-ultra);
    padding: 5rem 1.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    border: 1px solid rgba(45,139,62,0.07);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45,139,62,0.2);
}
.feature-icon {
    width: 62px;
    height: 62px;
    background: var(--green-tint);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--green-dark);
    transform: scale(1.08) rotate(-3deg);
}
.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--white);
}
.products-grid, .grid.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,139,62,0.09);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45,139,62,0.22);
}
.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--green-ultra);
    height: 230px;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.75rem;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.card:hover img { transform: scale(1.07); }
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    padding: 0.28rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.badge-chai    { background: var(--green-dark); }
.badge-hot     { background: linear-gradient(135deg,#b71c1c,#f44336); box-shadow: 0 3px 10px rgba(183,28,28,.4); }
.badge-trending{ background: linear-gradient(135deg,#4527a0,#7c4dff); box-shadow: 0 3px 10px rgba(124,77,255,.4); }
.badge-new     { background: linear-gradient(135deg,var(--green-dark),#7ec822);  box-shadow: 0 3px 10px rgba(45,139,62,.4); }
.card-body {
    padding: 1.4rem;
}
.card-body h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--green-tint);
}
.card-bottom strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-dark);
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    background: var(--green-ultra);
    padding: 5rem 1.5rem;
}
.offers-grid, .grid.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.offer-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,139,62,0.09);
    transition: var(--transition);
    overflow: hidden;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--leaf-bright));
}
.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45,139,62,0.22);
}
.offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-main));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.28rem 0.78rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}
.offer-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
}
.offer-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.8rem;
}
.offer-card small {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    background: var(--green-tint);
    padding: 0.32rem 0.72rem;
    border-radius: 6px;
}
.offer-card small::before { content: ''; }
.offer-discount {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 900; font-size: 1.1rem;
    color: var(--leaf-bright);
    background: rgba(126,200,34,.1);
    border: 1.5px solid rgba(126,200,34,.25);
    padding: .18rem .65rem; border-radius: 8px;
    margin-bottom: .5rem;
}

/* ===== BUSINESS SECTION ===== */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.biz-card {
    background: var(--green-ultra);
    border-radius: var(--radius);
    padding: 1.4rem;
    border: 1px solid rgba(45,139,62,0.1);
    border-left: 4px solid var(--green-main);
    transition: var(--transition);
}
.biz-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
    border-left-color: var(--leaf-bright);
}
.biz-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.biz-card p { color: var(--text-mid); font-weight: 500; font-size: 0.95rem; line-height: 1.5; }

/* ===== ADMIN SECTION ===== */
.admin-panel table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,139,62,0.1);
}
.admin-panel th, .admin-panel td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--green-tint);
}
.admin-panel th {
    background: var(--green-dark);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.admin-panel tr:last-child td { border-bottom: none; }
.admin-panel tbody tr:hover td { background: var(--green-ultra); }

/* ===== FOOTER ===== */
.footer-full {
    background: var(--green-darkest);
    padding: 4.5rem 1.5rem 0;
    color: rgba(255,255,255,0.8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.45rem; word-break: break-word; }
.footer-contact p a { color: inherit; word-break: break-all; }
.footer-logo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid rgba(126,200,34,0.4);
    object-fit: cover;
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.footer-col ul li a::before {
    content: '→';
    color: var(--leaf-bright);
    font-size: 0.8rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--leaf-bright); padding-left: 4px; }

.social-links { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 1rem; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover {
    transform: translateY(-3px);
    border-color: transparent;
}
.social-links a:nth-child(1):hover { background: #1877f2; color: #fff; } /* Facebook  */
.social-links a:nth-child(2):hover { background: radial-gradient(circle at 30% 110%, #fd5 0%, #f73 30%, #c13584 60%, #3051f1 100%); color: #fff; } /* Instagram */
.social-links a:nth-child(3):hover { background: #ff0000; color: #fff; } /* YouTube   */
.social-links a:nth-child(4):hover { background: #25d366; color: #fff; } /* WhatsApp  */
.subscribe-form { display: flex; flex-direction: column; gap: 0.6rem; }
.subscribe-form input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: #fff;
    font-size: 0.88rem;
    transition: var(--transition);
    font-family: inherit;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-form input:focus { outline: none; border-color: var(--green-light); background: rgba(255,255,255,0.1); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.82rem; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--leaf-bright);
    border-color: rgba(126,200,34,0.28);
    background: rgba(126,200,34,0.06);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(45,139,62,0.12);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: block; font-weight: 600; color: var(--text-dark); font-size: 0.88rem; margin-bottom: 0.3rem; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid rgba(45,139,62,0.18);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--green-ultra);
    color: var(--text-dark);
    font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--green-main);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45,139,62,0.1);
}
.contact-form button { align-self: flex-start; }
.form-success {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--green-tint);
    color: var(--green-dark);
    font-weight: 600;
    border: 1px solid rgba(45,139,62,0.2);
}

/* ===== LIGHT SECTIONS ===== */
.light { background: var(--green-ultra); }

/* ===== ANIMATIONS ===== */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-wrap::before { display: none; }
    .about-content h2 { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 36, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.75rem 1rem 1rem;
        gap: 0.15rem;
        border-bottom: 1px solid rgba(93,201,110,0.18);
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 0.65rem 1rem !important; border-radius: 10px; }
    .hero { min-height: 92svh; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .about-content ul { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .section { padding: 3.5rem 1rem; }
    .features-section, .offers-section { padding: 3.5rem 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
