/* ============================================================
   GREEN HARVEST — PREMIUM DESIGN SYSTEM
   Version 2.0 | Senior Frontend Design
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
    --forest:      #1a3c2e;
    --forest-mid:  #2d6a4f;
    --green:       #40916c;
    --green-light: #74c69d;
    --gold:        #c9a84c;
    --gold-light:  #e8c97a;
    --offwhite:    #f7f4ef;
    --cream:       #fdfbf7;
    --dark:        #0e1f18;
    --ink:         #1c2b22;
    --muted:       #5a6b5e;
    --border:      #dde5de;
    --shadow-sm:   0 2px 8px rgba(26,60,46,0.08);
    --shadow-md:   0 6px 24px rgba(26,60,46,0.12);
    --shadow-lg:   0 16px 48px rgba(26,60,46,0.16);
    --radius:      12px;
    --radius-sm:   8px;
    --radius-lg:   20px;
    --radius-pill: 999px;
    --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--forest-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ══════════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════════ */
.topbar {
    background: var(--forest);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.site-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: box-shadow var(--transition), background var(--transition);
}

.site-nav.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.nav-logo { height: 44px; }

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-link:hover { color: var(--forest); }
.nav-link:hover::after { width: 100%; }

.nav-link.active { color: var(--forest); font-weight: 600; }
.nav-link.active::after { width: 100%; }

/* Category Filter Bar Stickiness */
.category-filter-bar {
    top: 68px; /* Default height of sticky nav */
}
@media (max-width: 768px) {
    .category-filter-bar {
        top: 64px; /* Mobile height of sticky nav */
    }
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid var(--forest);
    transition: all var(--transition);
    letter-spacing: 0.02em;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--forest-mid);
    border-color: var(--forest-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26,60,46,0.25);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--forest);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid var(--forest);
    transition: all var(--transition);
    letter-spacing: 0.02em;
    cursor: pointer;
}
.btn-ghost:hover {
    background: var(--forest);
    color: #fff;
    transform: translateY(-1px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--forest);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid #fff;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.btn-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-1px);
}

.btn-white-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.btn-white-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   HERO SECTION (VIDEO)
   ══════════════════════════════════════════ */
.main-video-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    background: transparent;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
    transform: translate(-50%, -50%) scale(1.15);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14,31,24,0.9), rgba(14,31,24,0.3));
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.8;
    font-weight: 400;
}

/* ══════════════════════════════════════════
   SECTION LABELS & HEADINGS
   ══════════════════════════════════════════ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}
.section-badge::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
}

.section-heading {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.section-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}

/* Page header banner */
.page-header {
    background: var(--forest);
    padding: 56px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border: 60px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 20%, 100% 100%);
}

.page-header-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
    display: block;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════ */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--green);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition);
}
.service-card:hover {
    border-color: var(--green-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(64,145,108,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-mid);
    font-size: 20px;
    margin-bottom: 18px;
    transition: background var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--forest-mid);
    color: #fff;
}

/* ══════════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════════ */
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f9fbf9);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(26,60,46,0.12);
    border-color: var(--green-light);
}

.product-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f0f4f2;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-card-img img {
    transform: scale(1.1) rotate(1deg);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 46, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-action-btn {
    background: #fff;
    color: var(--forest);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.product-card:hover .product-action-btn {
    transform: translateY(0);
}

.product-action-btn:hover {
    background: var(--green);
    color: #fff;
    transform: scale(1.05);
}

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

.product-category-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest-mid);
    background: rgba(64,145,108,0.08);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid rgba(64,145,108,0.1);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--green);
}

.product-features-list {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-feature-item i {
    width: 18px;
    height: 18px;
    background: rgba(64,145,108,0.1);
    color: var(--green);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-feature-item span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   NEWS CARDS
   ══════════════════════════════════════════ */
.news-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}
.news-item:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.news-item-img {
    width: 80px;
    height: 72px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.news-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}
.news-item:hover .news-title { color: var(--forest-mid); }

/* ══════════════════════════════════════════
   TESTIMONIAL CARDS
   ══════════════════════════════════════════ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}
.testimonial-quote-mark {
    font-size: 56px;
    line-height: 1;
    color: rgba(64,145,108,0.15);
    font-family: Georgia, serif;
    position: absolute;
    top: 16px;
    right: 20px;
    font-weight: 700;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 14px;
}
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--forest);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.testimonial-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--muted);
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-light);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ══════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════ */
.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-input,
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="file"], textarea, select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}

textarea { resize: vertical; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    border-top: 3px solid var(--green);
    padding: 60px 0 0;
}

.footer-logo-img { height: 40px; margin-bottom: 14px; }

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: all var(--transition);
    text-decoration: none;
}
.footer-social-link:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color var(--transition);
    position: relative;
    padding-left: 0;
}
.footer-link:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
}
.footer-contact-item i {
    color: var(--green-light);
    margin-top: 3px;
    font-size: 12px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 48px;
    padding: 18px 0;
}
.footer-bottom-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   TIMELINE (HISTORY)
   ══════════════════════════════════════════ */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(64,145,108,0.1);
}
.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 8px;
}
.timeline-content {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   DIRECTOR PROFILE
   ══════════════════════════════════════════ */
.director-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .director-card {
        flex-direction: row;
    }
}
.director-img {
    width: 100%;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .director-img {
        width: 350px;
        flex-shrink: 0;
    }
}
.director-info {
    padding: 40px;
    flex: 1;
}
.director-quote {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 16px;
    color: var(--forest-mid);
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 24px;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════ */
.divider-line {
    width: 40px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 16px;
}

.section-dark { background: var(--forest); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.7); }

.bg-offwhite { background: var(--offwhite); }
.bg-cream    { background: var(--cream); }

/* ============================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ============================================================ */

@media (max-width: 768px) {
    /* Top Bar adjustments */
    .topbar { padding: 4px 0; }
    
    /* Hero Section */
    .main-video-hero {
        position: relative !important;
        height: 85vh !important;
        min-height: 580px !important;
        padding: 0 !important;
        background: transparent !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .hero-video-bg, .hero-video-overlay {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
    }

    .hero-video-bg {
        transform: translate(-50%, -50%) scale(1.5) !important;
        z-index: 1 !important;
        object-fit: cover !important;
    }
    
    .hero-video-overlay {
        background: linear-gradient(to bottom, rgba(14,31,24,0.7), rgba(14,31,24,0.3)) !important;
        z-index: 2 !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-content-wrapper {
        position: relative !important;
        z-index: 10 !important;
        height: 100% !important;
        min-height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 40px 24px !important;
    }
    
    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px !important;
        opacity: 0.9;
    }
    
    .hero-content-wrapper .flex {
        justify-content: center !important;
    }

    /* Section padding */
    .py-20 { padding-top: 60px !important; padding-bottom: 60px !important; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    
    .btn-white, .btn-white-ghost {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
    }
    
    .section-heading {
        font-size: 1.6rem !important;
    }

    .nav-logo { height: 38px; }

    /* Product Card Mobile Adjustments */
    .product-card { border-radius: var(--radius); }
    .product-card-img { height: 160px; }
    .product-card-body { padding: 12px 14px 16px; }
    
    .product-overlay { 
        opacity: 1; 
        background: linear-gradient(to top, rgba(26, 60, 46, 0.4), transparent); 
        backdrop-filter: none; 
        align-items: flex-end; 
        padding: 8px;
        pointer-events: none;
    }
    .product-action-btn { 
        transform: translateY(0); 
        font-size: 9px; 
        padding: 4px 10px; 
        pointer-events: auto;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .product-category-badge {
        font-size: 8px;
        padding: 2px 8px;
        margin-bottom: 6px;
    }
    
    .product-title {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .product-features-list {
        display: none; /* Hide on small grid mobile for clean look */
    }
}

/* ══════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════ */
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.page-link:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.page-link.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(64,145,108,0.3);
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR
   ══════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
    body, a, button, input, textarea, select {
        cursor: none !important;
    }
}

.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    border-radius: 50%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    opacity: 1; /* Ensure visible by default */
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background-color: var(--green);
    margin-top: -5px;
    margin-left: -5px;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(64,145,108,0.6);
    margin-top: -20px;
    margin-left: -20px;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Hover States */
.custom-cursor.hover {
    width: 0;
    height: 0;
}

.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    background-color: rgba(64,145,108,0.1);
    border-color: rgba(64,145,108,0.3);
}

/* ══════════════════════════════════════════
   MARQUEE CAROUSEL
   ══════════════════════════════════════════ */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll-marquee 35s linear infinite;
    width: max-content;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 260px;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: translateY(-5px);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* ══════════════════════════════════════════
   LEAFLET LIGHTBOX (VIEW-ONLY)
   ══════════════════════════════════════════ */
.leaflet-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(14, 31, 24, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leaflet-lightbox.active {
    display: flex;
    opacity: 1;
}

.leaflet-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leaflet-lightbox.active .leaflet-lightbox-content {
    transform: scale(1);
}

.leaflet-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    user-select: none;
    -webkit-user-drag: none;
}

.leaflet-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--forest);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.leaflet-lightbox-close:hover {
    background: var(--green);
    color: #fff;
    transform: rotate(90deg);
}

.leaflet-lightbox-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
