/* ==========================================================================
   APEX CROP CARE — Premium Dark Agricultural Theme
   Inspired by AgroNova design language
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Dark backgrounds */
    --bg-darkest: #050d08;
    --bg-dark: #0a1a0f;
    --bg-dark-2: #0d2818;
    --bg-dark-3: #112e1c;
    --bg-card: #0f2419;
    --bg-card-hover: #143020;
    --bg-card-light: rgba(20, 48, 32, 0.6);

    /* Greens */
    --deep-green: #1e6b3a;
    --forest-green: #2d7a4f;
    --leaf-green: #3a9d5e;
    --light-green: #4CAF3D;
    --bright-green: #22c55e;
    --emerald: #10b981;

    /* Golden accents */
    --gold: #c8a84e;
    --gold-light: #d4b85c;
    --gold-dark: #a08438;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #f0f4f1;
    --text-primary: #e8ede9;
    --text-secondary: rgba(232, 237, 233, 0.7);
    --text-muted: rgba(232, 237, 233, 0.5);
    --charcoal: #1F2933;

    /* Borders */
    --border-subtle: rgba(45, 122, 79, 0.15);
    --border-glow: rgba(45, 122, 79, 0.3);
    --border-gold: rgba(200, 168, 78, 0.3);

    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(45, 122, 79, 0.15);
    --shadow-gold-glow: 0 0 30px rgba(200, 168, 78, 0.1);

    /* Radii */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-darkest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

/* ---------- Loading Screen ---------- */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-darkest);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    width: 70px;
    height: 70px;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loading-spinner {
    position: relative;
    width: 52px;
    height: 52px;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(45, 122, 79, 0.15);
    border-top-color: var(--forest-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-text {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--forest-green);
    letter-spacing: 0.08em;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

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

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1440px) {
    .container { max-width: 1400px; }
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 26, 15, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 26, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(45, 122, 79, 0.3));
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* Navigation */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(45, 122, 79, 0.1);
}

.nav-link.active {
    color: var(--white);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Search button */
.header-search {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    background: rgba(45, 122, 79, 0.08);
}

.header-search:hover {
    color: var(--white);
    background: rgba(45, 122, 79, 0.15);
}

/* Get a Quote button */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darkest);
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(200, 168, 78, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 78, 0.4);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.28s ease;
    border: 1px solid var(--border-subtle);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(45, 122, 79, 0.12);
    color: var(--white);
    padding-left: 22px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(45, 122, 79, 0.1);
}

.hamburger .bar {
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.open .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.btn svg {
    flex-shrink: 0;
}

.btn-lg {
    padding: 14px 34px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(45, 122, 79, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darkest);
    box-shadow: 0 6px 20px rgba(200, 168, 78, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(200, 168, 78, 0.45);
}

.btn-outline {
    border-color: var(--forest-green);
    color: var(--forest-green);
    background: transparent;
}

.btn-outline:hover {
    background: var(--forest-green);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--bg-darkest);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-darkest);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-darkest);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('/uploads/slider/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(5, 13, 8, 0.92) 0%, rgba(10, 26, 15, 0.85) 50%, rgba(13, 40, 24, 0.78) 100%),
        radial-gradient(circle at 80% 20%, rgba(45, 122, 79, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(200, 168, 78, 0.08), transparent 50%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(45, 122, 79, 0.25);
    top: -150px;
    right: -150px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(200, 168, 78, 0.1);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(16, 185, 129, 0.15);
    top: 40%;
    left: 55%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(45, 122, 79, 0.15);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--leaf-green);
}

.hero-badge svg {
    flex-shrink: 0;
    color: var(--gold);
}

.hero-title {
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--body-font);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.hero-feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(45, 122, 79, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--bright-green);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 420px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ---------- Home Slider ---------- */
.home-slider {
    position: relative;
    min-height: 92vh;
    background: var(--bg-darkest);
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(48px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s linear 0.8s;
    z-index: 0;
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Real background photo with slow Ken Burns zoom */
.slide-bg-image {
    position: absolute;
    inset: -15%;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    transform: scale(1);
}

.slide.is-active .slide-bg-image {
    animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Soft radial fade to keep content readable */
.slide-bg-fade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 40, 24, 0.35), transparent 65%),
        linear-gradient(90deg, rgba(5, 13, 8, 0.75) 0%, transparent 60%);
}

/* Per-slide ambient tint */
.slide-2 .hero-shape-1 { background: rgba(200, 168, 78, 0.22); }
.slide-2 .hero-shape-2 { background: rgba(74, 175, 61, 0.12); }
.slide-2 .hero-shape-3 { background: rgba(255, 193, 7, 0.12); }
.slide-3 .hero-shape-1 { background: rgba(16, 185, 129, 0.28); }
.slide-3 .hero-shape-2 { background: rgba(45, 122, 79, 0.12); }
.slide-3 .hero-shape-3 { background: rgba(16, 185, 129, 0.18); }

/* Slide content entrance animation */
.slide .hero-badge,
.slide .hero-title,
.slide .hero-tagline,
.slide .hero-features,
.slide .hero-actions,
.slide .hero-visual {
    opacity: 0;
}

.slide.is-active .hero-badge    { animation: slideUp 0.7s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide.is-active .hero-title    { animation: slideUp 0.7s 0.35s cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide.is-active .hero-tagline  { animation: slideUp 0.7s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide.is-active .hero-features { animation: slideUp 0.7s 0.6s cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide.is-active .hero-actions  { animation: slideUp 0.7s 0.75s cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide.is-active .hero-visual   { animation: scaleIn 0.9s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both; }

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.86) translateY(24px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Hero Glass Card ---------- */
.hero-glass-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 32px;
    padding: 26px;
    background: linear-gradient(160deg, rgba(15, 36, 25, 0.72), rgba(10, 26, 15, 0.55));
    border: 1px solid rgba(45, 122, 79, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glass-glow {
    position: absolute;
    top: -40%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.45), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-glass-ring {
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px dashed rgba(200, 168, 78, 0.25);
    pointer-events: none;
    animation: ringSpin 30s linear infinite;
}

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

.hero-glass-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 300px;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

/* Floating chips on glass card */
.hero-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(15, 36, 25, 0.9);
    border: 1px solid rgba(200, 168, 78, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.hero-chip strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 0.86rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-chip small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-chip-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-chip-top {
    top: 18px;
    left: -36px;
    animation: float 5s ease-in-out infinite;
}

.hero-chip-bottom {
    bottom: 22px;
    right: -30px;
    animation: float 5s 1.2s ease-in-out infinite;
    border-color: rgba(45, 122, 79, 0.35);
}

.hero-chip-bottom strong {
    color: var(--gold);
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(13, 40, 24, 0.55);
    border: 1px solid rgba(45, 122, 79, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.slider-arrow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    border-color: var(--forest-green);
    box-shadow: 0 8px 30px rgba(45, 122, 79, 0.5), 0 0 0 6px rgba(45, 122, 79, 0.15);
    transform: translateY(-50%) scale(1.06);
}

.slider-arrow:hover::after {
    opacity: 1;
}

.slider-arrow svg {
    transition: transform 0.3s ease;
}

.slider-arrow:hover svg {
    transform: scale(1.15);
}

.slider-arrow-prev { left: 24px; }
.slider-arrow-next { right: 24px; }

/* Dots (vertical, right side) */
.slider-dots {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.slider-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: var(--transition);
}

.slider-dot:hover { background: rgba(255, 255, 255, 0.7); }

.slider-dot.is-active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 0 16px rgba(200, 168, 78, 0.6);
}

.slider-dot.is-active::before {
    border-color: rgba(200, 168, 78, 0.4);
}

/* Counter */
.slider-counter {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 6;
    color: var(--text-muted);
    font-family: var(--heading-font);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(13, 40, 24, 0.5);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slider-counter-current {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 700;
}

.slider-counter-sep {
    opacity: 0.5;
}

/* Progress bar */
.slider-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 6;
    background: rgba(255, 255, 255, 0.06);
}

.slider-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--forest-green), var(--gold));
    border-radius: 0 4px 4px 0;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 50px 0;
}

.stats-bar-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-bar-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.stats-bar-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ---------- Section base ---------- */
.section {
    padding: 90px 0;
}

.section-dark {
    background: var(--bg-darkest);
}

.section-darker {
    background: var(--bg-dark);
}

.section-dark-2 {
    background: var(--bg-dark-2);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--white);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- About Preview ---------- */
.section-about-preview {
    background: var(--bg-dark);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.about-real-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.about-preview-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 540px;
}

.about-preview-text .btn {
    margin-top: 12px;
}

/* ---------- Innovation Section ---------- */
.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.innovation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.innovation-feature {
    text-align: center;
    padding: 20px 16px;
}

.innovation-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(45, 122, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.innovation-icon svg {
    width: 26px;
    height: 26px;
    color: var(--forest-green);
}

.innovation-feature h4 {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.innovation-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Mission & Vision ---------- */
.section-mission-vision {
    background: var(--bg-dark-2);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--leaf-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

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

.mv-icon {
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--gold);
}

.mv-card p {
    color: var(--text-secondary);
}

/* ---------- Product Range / Categories ---------- */
.section-categories {
    background: var(--bg-darkest);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: block;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
}

.category-card-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: rgba(45, 122, 79, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card:hover .category-card-icon {
    box-shadow: 0 0 25px rgba(45, 122, 79, 0.2);
    border-color: var(--border-glow);
}

.category-card-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--white);
}

.category-card-count {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.category-card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.category-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--forest-green);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Crop Solutions Section ---------- */
.crops-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.crop-item {
    text-align: center;
    padding: 24px 12px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    cursor: default;
}

.crop-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.crop-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(45, 122, 79, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crop-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.crop-icon svg {
    width: 32px;
    height: 32px;
    color: var(--forest-green);
}

.crop-name {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}

/* ---------- Featured Products ---------- */
.section-featured {
    background: var(--bg-dark);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ---------- Product Cards ---------- */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.product-card-image {
    position: relative;
    padding: 30px 20px;
    background:
        radial-gradient(circle at 50% 40%, rgba(45, 122, 79, 0.06), transparent 70%),
        linear-gradient(180deg, rgba(15, 36, 25, 0.5), rgba(13, 40, 24, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-bottom: 1px solid var(--border-subtle);
}

.product-card-image img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-placeholder {
    width: 100%;
    max-width: 160px;
    height: 140px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--forest-green);
    font-size: 0.9rem;
    border: 2px dashed var(--border-subtle);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-darkest);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--white);
}

.product-technical {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.product-packing {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.84rem;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.product-packing svg {
    color: var(--forest-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.product-view-link:hover {
    color: var(--gold-light);
    gap: 10px;
}

/* ---------- Products page grid ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.categories-grid-products {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

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

/* ---------- Product Filter Tabs ---------- */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 22px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: var(--white);
}

/* ---------- Commitment Section ---------- */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.commitment-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.commitment-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(45, 122, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.commitment-icon svg {
    width: 28px;
    height: 28px;
    color: var(--leaf-green);
}

.commitment-item h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 6px;
}

.commitment-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Testimonial ---------- */
.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Plant preview ---------- */
.section-plant-preview {
    background: var(--bg-dark);
}

.plant-preview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.plant-preview-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 520px;
}

.plant-parts-mini {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
}

.pp-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--leaf-green);
    font-size: 1rem;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pp-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.pp-leaf { order: 1; }
.pp-flower { order: 2; }
.pp-stem { order: 3; }
.pp-root { order: 4; }
.pp-fruit { order: 5; grid-column: span 2; }

.pp-item span {
    position: relative;
    z-index: 1;
}

/* ---------- CTA ---------- */
.section-cta {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- Lab to Field ---------- */
.lab-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.lab-step {
    text-align: center;
    padding: 24px 16px;
}

.lab-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(45, 122, 79, 0.1);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--leaf-green);
}

.lab-step h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.lab-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Search Section ---------- */
.search-section {
    padding: 60px 0;
    background: var(--bg-dark-2);
}

.search-box {
    max-width: 600px;
    margin: 24px auto 0;
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.search-box input {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--body-font);
    font-size: 0.95rem;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: linear-gradient(135deg, var(--leaf-green), var(--forest-green));
}

/* ---------- Page Hero ---------- */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 13, 8, 0.92), rgba(10, 26, 15, 0.88));
}

.page-hero-about .page-hero-bg,
.page-hero-products .page-hero-bg,
.page-hero-gp .page-hero-bg,
.page-hero-insecticide .page-hero-bg,
.page-hero-herbicide .page-hero-bg,
.page-hero-fungicide .page-hero-bg,
.page-hero-plant .page-hero-bg,
.page-hero-contact .page-hero-bg {
    background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-hero-tag {
    display: inline-block;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-highlight {
    color: var(--gold);
}

.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    opacity: 0.5;
}

/* ---------- About page ---------- */
.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 560px;
}

.about-full-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-visual-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: var(--transition);
}

.about-visual-card:last-child {
    grid-column: span 2;
}

.about-visual-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.about-visual-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.about-visual-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section-about-mission {
    background: var(--bg-dark-2);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-mission-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.about-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.about-mission-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.about-mission-card p {
    color: var(--text-secondary);
}

/* ---------- Spec Table ---------- */
.section-table {
    padding-top: 0;
    background: var(--bg-darkest);
}

.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.spec-table thead th {
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: left;
    padding: 16px 20px;
}

.spec-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.92rem;
    vertical-align: top;
    background: var(--bg-card);
}

.spec-table tbody tr:last-child td {
    border-bottom: none;
}

.spec-table tbody tr {
    transition: background 0.2s;
}

.spec-table tbody tr:hover td {
    background: var(--bg-card-hover);
}

.spec-table tbody td:first-child {
    font-weight: 600;
    color: var(--gold);
}

/* ---------- Plant infographic ---------- */
.section-plant-infographic {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
}

.plant-infographic {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 780px;
}

.plant-diagram {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 260px;
}

.plant-diagram-svg {
    width: 100%;
    height: auto;
}

.plant-diagram-glow {
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.15), transparent 70%);
    z-index: 0;
}

.plant-info-card {
    position: absolute;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    width: 240px;
    max-width: 90%;
    z-index: 2;
    transition: var(--transition);
}

.plant-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.plant-info-card h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.plant-info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.plant-info-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(45, 122, 79, 0.2);
}

/* Position cards around plant */
.pp-leaf-card { top: 60px; left: -120px; }
.pp-flower-card { top: 20px; right: -40px; }
.pp-stem-card { top: 45%; left: -160px; }
.pp-fruit-card { top: 50%; right: -80px; }
.pp-root-card {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
}
.pp-root-card .plant-info-dot { margin: 0 auto 10px; }
.pp-root-card h3, .pp-root-card p { text-align: center; }

/* ---------- Contact page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-heading {
    margin-bottom: 24px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.contact-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--gold);
}

.contact-card-content p,
.contact-card-content a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card-content a:hover {
    color: var(--gold);
}

.contact-actions {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-subtle);
}

.contact-actions-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-map {
    background: var(--bg-dark);
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-subtle);
}

.map-placeholder iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.8) brightness(0.85);
}

.map-overlay-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    max-width: 330px;
    padding: 22px 26px;
    background: rgba(15, 36, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    z-index: 2;
}

.map-overlay-card h4 {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.map-overlay-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-darkest);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-wave {
    overflow: hidden;
    line-height: 0;
}

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

.footer-accent-line {
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--gold), var(--leaf-green));
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo span {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.footer-logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
    font-style: italic;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(45, 122, 79, 0.1);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social-link:hover {
    background: var(--forest-green);
    color: var(--white);
    border-color: var(--forest-green);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--forest-green);
    font-weight: 700;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links a:hover::before {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--forest-green);
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--leaf-green);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .pp-leaf-card { left: -40px; }
    .pp-stem-card { left: -60px; }
    .pp-fruit-card { right: -20px; }
    .pp-flower-card { right: 0; }
}

@media (max-width: 1024px) {
    .categories-grid,
    .categories-grid-products,
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-preview-grid,
    .plant-preview-grid,
    .about-full-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crops-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lab-process {
        grid-template-columns: repeat(3, 1fr);
    }

    .pp-leaf-card { left: -20px; }
    .pp-stem-card { left: -30px; }

    .btn-quote-desktop {
        display: none;
    }
}

@media (max-width: 860px) {
    /* Mobile header */
    .hamburger {
        display: flex;
    }

    .header-search {
        display: none;
    }

    .btn-quote-desktop {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        right: 0;
        left: 0;
        background: rgba(10, 26, 15, 0.98);
        backdrop-filter: blur(16px);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        border-top: 1px solid var(--border-subtle);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        padding: 16px;
    }

    .nav-list > li {
        width: 100%;
    }

    .nav-link {
        justify-content: space-between;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .has-dropdown .nav-link {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(45, 122, 79, 0.05);
        pointer-events: none;
        z-index: 1;
        border-radius: 12px;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 300px;
        pointer-events: auto;
    }

    .has-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .home-slider {
        min-height: 88vh;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-glass-card {
        max-width: 300px;
        padding: 18px;
    }

    .hero-chip-top {
        left: -10px;
    }

    .hero-chip-bottom {
        right: -6px;
    }

    .slider-dots {
        top: auto;
        right: auto;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 8px;
    }

    .slider-dot {
        width: 30px;
        height: 5px;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.3);
    }

    .slider-dot::before {
        inset: -8px;
    }

    .slider-dot.is-active {
        width: 50px;
        height: 5px;
        border-radius: 5px;
        background: linear-gradient(90deg, var(--gold-light), var(--gold));
        box-shadow: 0 0 14px rgba(200, 168, 78, 0.5);
    }

    .slider-counter {
        display: none;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-arrow-prev { left: 10px; }
    .slider-arrow-next { right: 10px; }

    .slide .hero-content {
        padding-bottom: 90px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .hero-visual {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .mv-grid,
    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .about-full-visual {
        grid-template-columns: 1fr;
    }

    .about-visual-card:last-child {
        grid-column: span 1;
    }

    .plant-infographic {
        min-height: auto;
    }

    .plant-diagram {
        margin-bottom: 40px;
    }

    .plant-info-card {
        position: static;
        width: 100%;
        max-width: none;
        margin-bottom: 16px;
        transform: none;
    }

    .pp-root-card {
        transform: none;
        width: 100%;
    }

    .crops-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .commitment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-overlay-card {
        position: static;
        max-width: none;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .map-placeholder {
        height: auto;
    }

    .map-placeholder iframe {
        height: 350px;
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .slider-arrow {
        display: none;
    }

    .slide .hero-badge {
        font-size: 0.68rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .slide .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }

    .categories-grid,
    .categories-grid-products,
    .featured-products-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .crops-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .lab-process {
        grid-template-columns: 1fr;
    }

    .product-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    .innovation-features {
        grid-template-columns: 1fr;
    }

    .plant-parts-mini {
        grid-template-columns: 1fr;
    }

    .pp-fruit {
        grid-column: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================
   CORPORATE MINIMALIST HERO SLIDER
========================================== */
.hero-corporate {
    position: relative;
    width: 100%;
    min-height: 85vh;
    max-height: 850px;
    background: #06160d;
    overflow: hidden;
}

.hero-corporate-swiper {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    max-height: 850px;
}

.hero-corporate-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 85vh;
    max-height: 850px;
}

/* Subtle gradient overlay for text legibility - Left side focused, transparent right */
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 22, 13, 0.88) 0%, rgba(6, 22, 13, 0.65) 45%, rgba(6, 22, 13, 0.2) 100%);
    z-index: 1;
}

.hero-corporate-container {
    position: relative;
    z-index: 2;
    padding: 120px 24px 140px;
    width: 100%;
}

.hero-caption {
    max-width: 620px;
    text-align: left;
}

/* Category / Sub-label */
.hero-category {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Main Heading */
.hero-title {
    font-family: var(--heading-font, 'Poppins', sans-serif);
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 700;
    line-height: 1.14;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    will-change: opacity, transform;
}

/* Subtitle Description */
.hero-desc {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    will-change: opacity, transform;
}

/* Actions Wrapper */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    will-change: opacity, transform;
}

/* Primary CTA Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--leaf-green, #008F3C);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 143, 60, 0.25);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary:hover {
    background: #00a847;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 71, 0.35);
    color: #ffffff;
}

.btn-hero-primary svg {
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(3px);
}

/* Secondary CTA Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Swiper Active Entrance Transitions */
.swiper-slide-active .hero-category,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-desc,
.swiper-slide-active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Minimal Bottom Controls Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 24px 0 32px;
    pointer-events: none;
}

.hero-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    pointer-events: auto;
}

/* Numeric Counter */
.hero-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--heading-font, 'Poppins', sans-serif);
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    user-select: none;
}

.curr-slide {
    font-weight: 700;
    color: #ffffff;
}

.sep {
    opacity: 0.35;
    padding: 0 3px;
}

.total-slides {
    opacity: 0.55;
    font-weight: 400;
}

/* Thin Progress Bar Line */
.hero-progress-line {
    flex: 1;
    max-width: 260px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.hero-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--leaf-green, #008F3C);
    border-radius: 2px;
}

/* Minimal Navigation Arrows */
.hero-nav-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hero-arrow-btn:hover {
    background: var(--leaf-green, #008F3C);
    border-color: var(--leaf-green, #008F3C);
    color: #ffffff;
    transform: scale(1.04);
}

.hero-arrow-btn:active {
    transform: scale(0.96);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .hero-corporate,
    .hero-corporate-swiper,
    .hero-corporate-slide {
        min-height: 75vh;
        max-height: none;
    }

    .hero-corporate-container {
        padding: 90px 20px 110px;
    }

    .hero-caption {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 26px;
    }

    .hero-progress-line {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-corporate,
    .hero-corporate-swiper,
    .hero-corporate-slide {
        min-height: 70vh;
    }

    .hero-corporate-container {
        padding: 80px 16px 100px;
    }

    .hero-category {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-progress-line {
        display: none;
    }
}




