:root {
    --green: #1A520D;
    --green-dark: #0f3108;
    --green-mid: #246412;
    --green-light: #2d7a17;
    --green-pale: #e8f5e3;
    --gold: #EBB526;
    --gold-dark: #c99510;
    --gold-light: #f5d060;
    --gold-pale: #fdf6dc;
    --white: #ffffff;
    --off-white: #f9faf7;
    --text-dark: #1a2410;
    --text-mid: #3d4f36;
    --text-light: #6b7e62;
    --border: #d8e8d2;
    --shadow-sm: 0 2px 12px rgba(26,82,13,0.08);
    --shadow-md: 0 8px 32px rgba(26,82,13,0.14);
    --shadow-lg: 0 20px 60px rgba(26,82,13,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,h2,h3,h4,h5 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 0;
    letter-spacing: 0.3px;
}
.topbar i { color: var(--gold); }
.topbar-right a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    transition: var(--transition);
}
.topbar-right a:hover { color: var(--gold); }

/* ---- NAVBAR ---- */
#mainNav {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(26,82,13,0.1);
    transition: var(--transition);
    z-index: 1000;
}
#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(26,82,13,0.18);
}

.brand-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 66px; height: 66px;
    border-radius: 50px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(26,82,13,0.35);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
}
.brand-tagline {
    font-size: 0.68rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.navbar-toggler {
    border: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
}
.toggler-icon {
    width: 24px; height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.navbar-toggler:focus { box-shadow: none; }

.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-mid) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--green) !important;
    background: var(--green-pale);
}
.btn-nav {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    font-weight: 700;
    border-radius: 8px;
    margin-left: 8px;
    padding: 9px 22px !important;
}
.btn-nav:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(235,181,38,0.45);
}

/* ---- BUTTONS ---- */
.btn-primary-agro {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-agro:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: var(--green-dark);
    border: none;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(235,181,38,0.45);
}
.btn-outline-agro {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 11px 30px;
    border-radius: var(--radius);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-agro:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ---- SECTION LABELS ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-title .gold { color: var(--gold-dark); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* =============================================
   HOME PAGE
   ============================================= */

/* HERO */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0 100px; }
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(235,181,38,0.18);
    border: 1px solid rgba(235,181,38,0.4);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); }
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}
.hero-image-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}
.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.hero-img-main {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 460px;
    background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem;
    border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.hero-badge strong { display: block; font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.hero-badge span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; }

/* FEATURES STRIP */
.features-strip { padding: 40px 0; background: var(--off-white); }
.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--green);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
}
.feature-icon {
    width: 52px; height: 52px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.feature-text h6 {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}
.feature-text p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ABOUT SECTION */
.about-section { padding: 90px 0; background: var(--white); }
.about-img-wrap {
    position: relative;
    padding-right: 24px;
}
.about-img-main {
    width: 100%;
    height: 440px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    background: linear-gradient(135deg, var(--green-pale), var(--green-pale));
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-md);
}
.about-img-wrap img{
    height: 440px;
}
.about-img-accent {
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 180px;
    height: 180px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    text-align: center;
    padding: 16px;
}
.about-img-accent strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1;
}
.about-img-accent span { font-size: 0.8rem; font-weight: 700; color: var(--green-dark); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.check-list li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* PRODUCTS SECTION */
.products-section { padding: 90px 0; background: var(--off-white); }
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-img {
    height: 200px;
    /* background: linear-gradient(135deg, var(--green-pale), #ffffff); */
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.product-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.06), transparent);
}
.product-tag {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.product-body { padding: 24px; }
.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.product-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
}
.product-price small { font-size: 0.75rem; font-family: 'Jost', sans-serif; color: var(--text-light); font-weight: 400; }
.btn-enquire {
    background: var(--green-pale);
    color: var(--green);
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.btn-enquire:hover {
    background: var(--green);
    color: var(--white);
}

/* SERVICES SECTION */
.services-section { padding: 90px 0; background: var(--white); }
.service-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.service-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* CTA BANNER */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.cta-banner .container-fluid { position: relative; z-index: 1; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-title .gold { color: var(--gold); }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }

/* TESTIMONIALS */
.testimonials { padding: 90px 0; background: var(--off-white); }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--green-pale);
    line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 3.0rem; height: 3.0rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.author-loc { font-size: 0.8rem; color: var(--text-light); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero-label a { color: var(--gold-light); }
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin: 0;
}
.values-section { padding: 90px 0; }
.value-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gold);
}
.value-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}
.value-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.value-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0; }

.team-section { padding: 90px 0; background: var(--off-white); }
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-img {
    height: 220px;
    background: linear-gradient(135deg, var(--green-pale), #c8dfc4);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
}
.team-body { padding: 24px 20px; }
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-page { padding: 70px 0 90px; background: var(--off-white); }
.category-tabs { margin-bottom: 40px; }
.tab-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Jost', sans-serif;
}
.tab-btn:hover, .tab-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page { padding: 70px 0 90px; }
.service-detail-card {
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-detail-header {
    padding: 36px 32px 28px;
    position: relative;
}
.service-detail-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}
.service-detail-title { font-size: 1.3rem; font-weight: 700; color: var(--white); margin: 0; }
.service-detail-body { padding: 28px 32px; background-color:var(--green-pale); }
.service-detail-desc { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-bullets { list-style: none; padding: 0; margin: 0; }
.service-bullets li {
    display: flex; align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before {
    content: '→';
    color: var(--gold-dark);
    font-weight: 700;
    flex-shrink: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page { padding: 70px 0 90px; }
.contact-info-card {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--white);
    height: 100%;
}
.contact-info-title { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-info-sub { color: rgba(255,255,255,0.72); font-size: 0.93rem; margin-bottom: 36px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-item-icon {
    width: 46px; height: 46px;
    background: rgba(235,181,38,0.2);
    border: 1px solid rgba(235,181,38,0.35);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); font-weight: 600; }
.contact-item-value { color: var(--white); font-weight: 500; margin-top: 2px; font-size: 0.95rem; }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
}
.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,82,13,0.1);
    outline: none;
}
.form-control::placeholder { color: #b0bda8; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.72); }
.footer-top { padding: 70px 0 50px; }
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--green-dark); }
.footer-heading {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero { min-height: auto; }
    .hero-content { padding: 60px 0 80px; }
    .hero-image-col { display: none; }
    .hero-stats { gap: 24px; }
    .about-img-accent { width: 140px; height: 140px; right: -10px; }
    .contact-form-card { padding: 32px 24px; }
    .contact-info-card { padding: 32px 28px; }
}
@media (max-width: 767px) {
    .topbar .topbar-left span:last-child { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.6rem; }
    .section-title { font-size: 1.8rem; }
    .about-img-wrap { padding-right: 0; margin-bottom: 60px; }
    .about-img-accent { bottom: -16px; right: 10px; }
    .feature-card { flex-direction: column; text-align: center; }
    .footer-top { padding: 50px 0 30px; }
}
@media (max-width: 576px) {
    .hero-cta { flex-direction: column; }
    .btn-primary-agro, .btn-gold, .btn-outline-agro { width: 100%; justify-content: center; }
    .cta-banner .d-flex { flex-direction: column; gap: 16px; }
}