/* ============================================
   DALKIRAN ZİRAAT - ANA STİL DOSYASI
   dalkiranziraat.com.tr
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --green-dark:    #1b5e20;
    --green-main:    #2e7d32;
    --green-mid:     #388e3c;
    --green-light:   #4caf50;
    --green-pale:    #e8f5e9;
    --green-accent:  #81c784;

    --gold:          #f9a825;
    --gold-light:    #fff8e1;

    --blue-dark:     #1565c0;
    --blue-mid:      #1976d2;
    --blue-light:    #e3f2fd;

    --orange:        #e65100;
    --red:           #c62828;

    --text-dark:     #1a2332;
    --text-body:     #374151;
    --text-muted:    #6b7280;
    --text-light:    #9ca3af;

    --white:         #ffffff;
    --bg-light:      #f9fafb;
    --bg-gray:       #f3f4f6;
    --border:        #e5e7eb;

    --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
    --shadow-green:  0 6px 24px rgba(46,125,50,.25);

    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-full:   9999px;

    --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
    --font-main:     'Inter', sans-serif;
    --font-display:  'Playfair Display', serif;

    --container:     1240px;
    --header-h:      74px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- CONTAINER ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SECTION HELPER ---------- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-main);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 7px 16px; font-size: .85rem; border-radius: var(--radius-sm); }

.btn-primary {
    background: var(--green-main);
    color: var(--white);
    border-color: var(--green-main);
    box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,50,.35); }

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

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}
.btn-white:hover { background: var(--green-pale); border-color: var(--green-pale); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    padding: 8px 0;
    border-bottom: 2px solid var(--green-main);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar-left i, .topbar-right i { color: var(--green-accent); margin-right: 5px; }
.topbar-wa {
    background: #25d366;
    color: white !important;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: background var(--transition);
}
.topbar-wa:hover { background: #128c7e; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: var(--header-h);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-svg {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .logo-svg { height: 38px; }
}
.logo-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}
.logo-main {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.2;
}
.logo-sub {
    display: block;
    font-size: .7rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Nav */
.nav { margin-left: auto; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--green-main);
    background: var(--green-pale);
}
.nav-link i { font-size: .7rem; transition: transform var(--transition); }
.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    margin: 3px 6px;
    transition: all var(--transition);
}
.dropdown li a:hover { background: var(--green-pale); color: var(--green-main); }

/* Header CTA */
.header-cta { margin-left: 16px; font-size: .88rem; padding: 9px 20px; }

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2e0a 0%, #1b4d1e 40%, #2e7d32 100%);
}
.hero-bg {
    position: absolute; inset: 0; background: url('../img/banner-dalkiranziraat.png') center/cover no-repeat; opacity: 1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 80px 0;
    color: white;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: #a5d6a7;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.hero-badge i { color: var(--gold); }
.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}
.hero-title .highlight {
    color: #a5d6a7;
    position: relative;
}
.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    width: fit-content;
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #a5d6a7;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    font-size: .8rem;
    animation: bounceDown 2s infinite;
    transition: all var(--transition);
}
.hero-scroll a:hover { border-color: white; color: white; }
@keyframes bounceDown {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    background: var(--green-pale);
    padding: 28px 0;
    border-top: 3px solid var(--green-main);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
    width: 46px; height: 46px;
    flex-shrink: 0;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-main);
    font-size: 1.1rem;
}
.why-text h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.why-text p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: var(--white); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cat-card {
    display: block;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--cat-color, var(--green-main));
}
.cat-card:hover {
    border-color: var(--cat-color, var(--green-main));
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.cat-icon-wrap {
    width: 64px; height: 64px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--cat-color, var(--green-main));
    margin-bottom: 20px;
    transition: all var(--transition);
}
.cat-card:hover .cat-icon-wrap {
    background: var(--cat-color, var(--green-main));
    color: white;
}
.cat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.cat-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--cat-color, var(--green-main));
    transition: gap var(--transition);
}
.cat-card:hover .cat-link { gap: 10px; }

/* ============================================
   BRANDS
   ============================================ */
.brands { background: var(--bg-light); }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}
.brand-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.brand-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.brand-logo-area {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.brand-logo-area img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(.3);
    transition: filter var(--transition);
}
.brand-card:hover .brand-logo-area img { filter: grayscale(0); }
.brand-name-fallback {
    width: 100%; height: 56px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--green-dark);
}
.brand-text-logo {
    font-family: var(--font-display);
}
.brand-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1.3;
}
.brand-desc {
    font-size: .76rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured { background: var(--white); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: .5px;
    text-transform: uppercase;
}
.product-badge.new { background: #fff8e1; color: #e65100; }
.product-icon {
    width: 52px; height: 52px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.product-brand {
    font-size: .76rem;
    font-weight: 700;
    color: var(--green-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.product-desc {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.product-tags span {
    background: var(--bg-gray);
    color: var(--text-body);
    font-size: .74rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* ============================================
   AGRO TIPS
   ============================================ */
.agro-tips { background: var(--bg-light); }
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-accent); }
.tip-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.15rem;
}
.tip-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--green-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.tip-content h4 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.tip-content p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--green-main);
    transition: gap var(--transition);
}
.tip-link:hover { gap: 9px; }

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area { background: var(--white); }
.service-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-text .section-tag { text-align: left; }
.service-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin: 12px 0 16px;
    line-height: 1.25;
}
.service-text > p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-body);
    font-weight: 500;
}
.service-list li i { color: var(--green-main); font-size: .8rem; }
.service-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}
.cta-content p { color: rgba(255,255,255,.8); font-size: .95rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0f1f10; color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-logo i { color: var(--green-accent); font-size: 1.3rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    transition: all var(--transition);
    text-decoration: none;
}
.footer-social a:hover { background: var(--green-main); color: white; }
.footer-col h5 {
    font-size: .88rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
    text-decoration: none;
}
.footer-col ul li a:hover { color: var(--green-accent); }
.footer-col ul li a i { font-size: .7rem; color: var(--green-accent); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}
.footer-contact li i { color: var(--green-accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-contact li a:hover { color: var(--green-accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green-light); }
.footer-domain { font-weight: 600; color: var(--green-accent); transition: color var(--transition); }
.footer-domain:hover { color: var(--green-light); cursor: default; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
    text-decoration: none;
    transition: all var(--transition);
    animation: pulseWA 2.5s infinite;
}
.wa-float:hover { background: #128c7e; transform: scale(1.1); animation: none; }
@keyframes pulseWA {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.1); }
}
.wa-tooltip {
    position: absolute;
    right: 68px;
    background: #333;
    color: white;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 999;
    width: 44px; height: 44px;
    background: var(--green-main);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
    padding: 64px 0;
    color: white;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 20px; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: .65rem; }

/* Products Filter */
.products-filter {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}
.filter-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--green-main);
    background: var(--green-pale);
    color: var(--green-main);
}

/* Products Sections */
.products-section { padding: 60px 0; }
.products-section:nth-child(even) { background: var(--bg-light); }
.section-anchor { scroll-margin-top: 130px; }
.section-brand-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.brand-icon-badge {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--green-main);
    flex-shrink: 0;
}
.section-brand-header h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text-dark);
}
.section-brand-header p { font-size: .9rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
.about-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--green-main);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}
.about-image-badge span { display: block; font-size: 1.6rem; font-weight: 800; }
.about-image-badge small { font-size: .8rem; opacity: .85; }
.about-content .section-tag { text-align: left; }
.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--text-dark);
    margin: 12px 0 18px;
    line-height: 1.25;
}
.about-content p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}
.value-item i { color: var(--green-main); margin-top: 3px; font-size: .95rem; flex-shrink: 0; }
.value-item h5 { font-size: .88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.value-item p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* Team / Stats bar */
.about-stats {
    background: var(--green-main);
    padding: 48px 0;
    color: white;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.astat-num { font-size: 2.5rem; font-weight: 800; color: #a5d6a7; display: block; }
.astat-label { font-size: .88rem; color: rgba(255,255,255,.8); margin-top: 4px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.contact-info > p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--green-light); }
.contact-item-icon {
    width: 46px; height: 46px;
    background: var(--green-main);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.contact-item-text h5 { font-size: .88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a {
    font-size: .9rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.5;
}
.contact-item-text a:hover { color: var(--green-main); }

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: .92rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    background: var(--green-pale);
    border: 1px solid var(--green-accent);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--green-dark);
    font-weight: 600;
    margin-top: 16px;
    align-items: center;
    gap: 10px;
}

/* Map Section */
.map-section { padding: 0 0 60px; }
.map-section iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ============================================
   ABOUT PAGE EXTRA
   ============================================ */
.mvd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mvd-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}
.mvd-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mvd-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.mvd-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.mvd-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
    text-align: center;
}
.service-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon {
    width: 60px; height: 60px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-main);
    font-size: 1.3rem;
    margin: 0 auto 18px;
    transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--green-main); color: white; }
.service-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* Region Block */
.region-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding-top: 64px;
}
.region-text .section-tag { text-align: left; }
.region-text h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--text-dark);
    margin: 12px 0 16px;
    line-height: 1.25;
}
.region-text p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.region-crops {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.crop-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}
.crop-tag i { font-size: .75rem; color: var(--green-main); }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
/* ============================================
   CONTACT PAGE EXTRA
   ============================================ */
.quick-contact-bar {
    background: var(--green-pale);
    border-bottom: 2px solid var(--green-accent);
    padding: 0;
}
.qc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.qc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--text-body);
    border-right: 1px solid rgba(0,0,0,.06);
    transition: background var(--transition);
}
.qc-item:last-child { border-right: none; }
.qc-item:hover { background: var(--green-accent); color: white; }
.qc-item.qc-wa:hover { background: #25d366; }
.qc-icon {
    width: 44px; height: 44px;
    background: var(--green-main);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.qc-item.qc-wa .qc-icon { background: #25d366; }
.qc-label {
    display: block;
    font-size: .74rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 2px;
}
.qc-item:hover .qc-label { color: rgba(255,255,255,.8); }
.qc-value {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
}
.qc-item:hover .qc-value { color: white; }

/* Social Links */
.contact-social h5 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}
.social-btn.fb { background: #e8f0fe; color: #1a73e8; }
.social-btn.fb:hover { background: #1a73e8; color: white; }
.social-btn.ig { background: #fce4ec; color: #e91e63; }
.social-btn.ig:hover { background: #e91e63; color: white; }
.social-btn.wa { background: #e8f5e9; color: #2e7d32; }
.social-btn.wa:hover { background: #25d366; color: white; }

/* Map Directions */
.map-directions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 28px;
    padding: 24px 28px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    flex-wrap: wrap;
}
.direction-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}
.direction-info > i {
    width: 40px; height: 40px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-main);
    font-size: 1rem;
    flex-shrink: 0;
}
.direction-info strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: 4px; }
.direction-info p { font-size: .83rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green-main); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--green-main); }
.faq-item.open .faq-question { color: var(--green-main); }
.faq-question i { flex-shrink: 0; font-size: .8rem; color: var(--green-main); transition: transform var(--transition); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
    padding: 0 20px 18px;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

/* ============================================
   RESPONSIVE EXTRAS
   ============================================ */
@media (max-width: 1024px) {
    .mvd-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .region-block { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .qc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mvd-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .qc-grid { grid-template-columns: 1fr 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .qc-grid { grid-template-columns: 1fr; }
    .map-directions { flex-direction: column; gap: 16px; }
}

/* ============================================
   MAIN RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: 1fr 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-inner { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .hero-title { font-size: 2.3rem; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .section { padding: 56px 0; }
    .section-title { font-size: 1.7rem; }

    .topbar-left, .topbar-right { gap: 10px; font-size: .78rem; }
    .topbar-right .topbar-wa { display: none; }

    /* Nav mobile */
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: white;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        transform: translateY(-110%);
        transition: transform var(--transition);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        z-index: 999;
    }
    .nav.open { transform: translateY(0); }
    .nav-list { flex-direction: column; gap: 2px; }
    .nav-link { padding: 12px 16px; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-gray);
        border-radius: var(--radius-sm);
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }

    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .header-inner { gap: 12px; }

    .hero-title { font-size: 1.85rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .stat-divider { display: none; }

    .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.6rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cat-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .topbar-inner { flex-direction: column; gap: 4px; align-items: flex-start; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
