/* ==========================================================================
   PANAMGOODAN EXPORTS - PREMIUM INTERNATIONAL AGRICULTURAL EXPORT CSS
   ========================================================================== */

:root {
    --color-bg: #f9fbf9;
    --color-surface-warm: #ffffff;
    --color-forest-dark: #0b2918;
    --color-forest-card: #153321;
    --color-primary-green: #0d9f67;
    --color-primary-dark: #222b24;
    --color-nav-text: #1c241e;
    --color-accent-gold: #e5ab17;
    --color-accent-earth: #c86d26;
    --color-sage-muted: #526356;

    --font-heading: 'Outfit', sans-serif;
    --font-display: 'Fredoka', 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-card: 24px;
    --radius-btn: 50px;

    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 12px 36px rgba(11, 41, 24, 0.06);
    --shadow-hover: 0 20px 48px rgba(11, 41, 24, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-nav-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    padding: 0 10px 24px 10px;
}

/* Page Container Wrapper */
.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 84px; /* Clearance for fixed header */
}

/* --------------------------------------------------------------------------
   1. GUARANTEED STICKY/FIXED HEADER SECTION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
    background-color: rgba(249, 251, 249, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 28px;
    box-shadow: 0 4px 20px rgba(11, 41, 24, 0.05);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
    background-color: rgba(249, 251, 249, 0.98);
    box-shadow: 0 10px 30px rgba(11, 41, 24, 0.12);
    padding: 8px 28px;
}

.header-container {
    max-width: 1560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 50px; width: auto; object-fit: contain; transition: height 0.3s ease; }
.site-header.scrolled .logo-img { height: 44px; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; list-style: none; gap: 32px; }
.nav-item { position: relative; }
.nav-link {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 6px 0;
    position: relative;
}

/* Active Link & Hover Green Indicator Line */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background-color: var(--color-primary-green);
    border-radius: 4px;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary-green);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta { display: flex; align-items: center; }
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary-green);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 22px 8px 10px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(13, 159, 103, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.wa-icon-wrapper {
    width: 32px; height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
}
.whatsapp-btn:hover {
    background-color: #0b8a59;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13, 159, 103, 0.35);
}
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--color-primary-dark); cursor: pointer; padding: 8px; }

/* --------------------------------------------------------------------------
   3. HERO SECTION (EXPANDED HEIGHT & WIDTH)
   -------------------------------------------------------------------------- */
.hero-section { width: 100%; }
.hero-grid { display: grid; grid-template-columns: 440px 1fr; gap: 20px; min-height: 660px; }
.hero-card { border-radius: var(--radius-card); overflow: hidden; position: relative; box-shadow: var(--shadow-card); transition: box-shadow 0.3s ease; }
.hero-card:hover { box-shadow: var(--shadow-hover); }

.left-card { background-color: var(--color-forest-dark); position: relative; cursor: grab; min-height: 660px; }
.left-card:active { cursor: grabbing; }

.poster-slides-container { width: 100%; height: 100%; position: relative; overflow: hidden; }
.poster-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.35, 1);
    will-change: transform;
}
.poster-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.poster-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 1.2s ease; }
.left-card:hover .poster-img { transform: scale(1.04); }

.poster-arrow-controls { position: absolute; bottom: 24px; right: 24px; z-index: 10; display: flex; align-items: center; gap: 10px; }
.arrow-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background-color: #ffffff; color: var(--color-primary-dark); border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.arrow-btn:hover { background-color: var(--color-primary-green); color: #ffffff; transform: scale(1.1); }

.right-card { background-color: var(--color-forest-dark); min-height: 660px; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; }
.banner-bg-wrapper { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-banner-img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.right-card:hover .hero-banner-img { transform: scale(1.03); }
.banner-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(11, 41, 24, 0.2) 0%, rgba(11, 41, 24, 0.5) 80%, rgba(11, 41, 24, 0.7) 100%); }
.hero-banner-content { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; padding: 52px 36px 36px 36px; }
.market-tagline span { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--color-accent-gold); letter-spacing: 0.5px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); }
.hero-headline { font-family: var(--font-display); font-size: 58px; font-weight: 700; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8); margin-bottom: 28px; line-height: 1.08; }
.center-logo-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    padding: 18px 48px; border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.95);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    max-width: 440px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.center-logo-box:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35); }
.center-logo-img { height: 80px; width: auto; object-fit: contain; }
.logo-subtext { font-family: var(--font-heading); font-size: 13.5px; font-weight: 700; color: var(--color-forest-dark); letter-spacing: 0.4px; }

/* FLOATING SIDEBAR ACTION BUTTONS */
.floating-actions { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 6px; }
.floating-btn {
    width: 42px; height: 42px; border-radius: 8px 0 0 8px;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff; font-size: 19px; text-decoration: none;
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15); position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.info-btn { background-color: var(--color-primary-green); }
.info-btn:hover { background-color: #0b8a59; }
.whatsapp-float-btn { background-color: var(--color-accent-earth); }
.whatsapp-float-btn:hover { background-color: #b55c1b; }
.floating-tooltip { position: absolute; right: 48px; white-space: nowrap; background: #1c241e; color: #ffffff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 6px; opacity: 0; pointer-events: none; transform: translateX(8px); transition: opacity 0.2s ease, transform 0.2s ease; }
.floating-btn:hover .floating-tooltip { opacity: 1; transform: translateX(0); }

/* --------------------------------------------------------------------------
   5. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-section {
    position: relative;
    padding: 72px 48px;
    background: #ffffff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-bg-mist-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.mist-layer-1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(240, 247, 242, 0.85) 0%, rgba(255, 255, 255, 0.96) 70%);
}

.mist-layer-2 {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13, 159, 103, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
}

.botanical-leaf-accent {
    position: absolute;
    bottom: -10px;
    right: 80px;
    z-index: 2;
    pointer-events: none;
    animation: leafFloat 8s ease-in-out infinite alternate;
}

@keyframes leafFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(2deg); }
}

.about-container {
    position: relative;
    z-index: 5;
    max-width: 1520px;
    margin: 0 auto;
}

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

/* Right Column: Premium Video Showcase Card */
.about-video-wrapper {
    width: 100%;
    position: relative;
    z-index: 5;
}

.about-video-card {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 41, 24, 0.22), 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.95);
    background-color: var(--color-forest-dark);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(11, 41, 24, 0.28);
}

.about-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.about-video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(11, 41, 24, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.about-video-badge i {
    color: var(--color-primary-green);
    font-size: 14px;
}

.about-video-sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--color-forest-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.about-video-sound-btn:hover {
    transform: scale(1.1);
    background: var(--color-primary-green);
    color: #ffffff;
}
    border-radius: 32px;
    border: 7px solid #ffffff;
    box-shadow: 0 18px 44px rgba(11, 41, 24, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.diamond-card:hover {
    transform: rotate(45deg) scale(1.06);
    z-index: 10;
    box-shadow: 0 24px 54px rgba(11, 41, 24, 0.22);
}

.diamond-inner {
    width: 100%;
    height: 100%;
    transform: rotate(-45deg) scale(1.42);
    overflow: hidden;
}

.diamond-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-top-right { top: 10px; right: 25px; z-index: 3; }
.card-bottom-left { bottom: 25px; left: 10px; z-index: 4; }
.card-center-connect { top: 130px; left: 130px; z-index: 2; }

.creative-badge {
    position: absolute;
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    z-index: 15;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-yellow-top { background-color: var(--color-accent-gold); color: var(--color-forest-dark); top: 35px; left: 0px; transform: rotate(-18deg); }
.badge-red-bottom { background-color: var(--color-accent-earth); bottom: 25px; right: 0px; transform: rotate(-8deg); }
.badge-green-left { background-color: var(--color-primary-green); top: 240px; left: -25px; transform: rotate(10deg); }

/* Left Column Content (Script Writing Style) */
.about-text-content {
    padding-right: 20px;
}

.script-heading {
    font-family: 'Dancing Script', 'Great Vibes', cursive;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-forest-dark);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.narrative-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.narrative-p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Clean Link CTA matching 'ABOUT BLANKET >' */
.about-cta-wrapper {
    display: flex;
    align-items: center;
}

.about-script-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.script-arrow-icon {
    font-size: 10px;
    color: var(--color-sage-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.about-script-link:hover {
    color: var(--color-primary-green);
}

.about-script-link:hover .script-arrow-icon {
    transform: translateX(4px);
    color: var(--color-primary-green);
}

/* --------------------------------------------------------------------------
   6. PRODUCT MOSAIC SECTION
   -------------------------------------------------------------------------- */
.products-grid-section { width: 100%; }
.products-grid-container { display: grid; grid-template-columns: repeat(4, 1fr) 300px; grid-template-rows: repeat(2, 290px); gap: 0; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.grid-tile { position: relative; overflow: hidden; display: flex; }
.tile-chilli { grid-column: 1 / 3; grid-row: 1; }
.tile-ginger { grid-column: 3 / 5; grid-row: 1; }
.tile-okra { grid-column: 1 / 3; grid-row: 2; }
.tile-drumsticks { grid-column: 3 / 5; grid-row: 2; }
.tile-explore-more { grid-column: 5 / 6; grid-row: 1 / 3; }
.tile-half { width: 50%; height: 100%; position: relative; overflow: hidden; }
.tile-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.grid-tile:hover .tile-img { transform: scale(1.04); }
.tile-content-box { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px 20px; position: relative; }

/* Harmonious Deep Agricultural Colors */
.bg-red { background-color: #1a4d2e; }
.bg-orange { background-color: #2b3a2a; }
.bg-purple { background-color: #153321; }
.bg-green { background-color: #0b2918; }

.badge-tag { position: absolute; top: 20px; padding: 5px 14px; font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.tag-beige { background-color: #f7e8cf; color: #1a4d2e; border-radius: 18px 4px 18px 4px; }
.tag-red { background-color: var(--color-primary-green); color: #ffffff; border-radius: 12px; }
.tag-yellow-round { background-color: var(--color-accent-gold); color: var(--color-forest-dark); border-radius: 50px; padding: 5px 14px; }
.tag-lime { background-color: #81c784; color: #0b2918; border-radius: 16px 16px 4px 16px; }
.tile-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #ffffff; line-height: 1.15; margin: 18px 0 14px 0; text-transform: uppercase; }
.big-title-text { font-size: 25px; display: block; margin: 2px 0; }
.text-yellow { color: var(--color-accent-gold); }
.text-lime { color: #81c784; }
.tile-explore-btn { font-family: var(--font-heading); font-size: 12px; font-weight: 800; color: #ffffff; text-decoration: none; border-bottom: 2px solid #ffffff; padding-bottom: 2px; transition: opacity 0.2s ease; }
.tile-explore-btn:hover { opacity: 0.85; }

.explore-more-container { width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding-top: 18px; overflow: hidden; background-color: var(--color-forest-dark); }
.thumb-circle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; z-index: 5; }
.thumb-circle { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.85); transition: transform 0.3s ease; }
.thumb-circle:hover { transform: scale(1.1); }
.thumb-circle img { width: 100%; height: 100%; object-fit: cover; }
.model-image-box { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: center; }
.model-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.explore-more-container:hover .model-img { transform: scale(1.03); }
.scalloped-banner { position: absolute; bottom: 0; left: 0; right: 0; background-color: var(--color-forest-card); padding: 22px 18px 18px 18px; z-index: 10; border-radius: 22px 22px 0 0; }
.scalloped-content { display: flex; align-items: center; justify-content: space-between; }
.banner-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #ffffff; text-transform: uppercase; }
.banner-yellow-text { color: var(--color-accent-gold); font-size: 21px; }
.banner-arrow-btn { width: 42px; height: 42px; border-radius: 50%; background-color: var(--color-primary-green); color: #ffffff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.2s ease, background-color 0.2s ease; }
.banner-arrow-btn:hover { background-color: #0b8a59; transform: scale(1.1); }

/* --------------------------------------------------------------------------
   9. EXPORT PROCESS SECTION (TIMELINE)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   9. EXPORT PROCESS SECTION (TIMELINE - SEAMLESSLY BLENDED)
   -------------------------------------------------------------------------- */
.process-section {
    position: relative;
    padding: 70px 44px 80px 44px;
    background: linear-gradient(180deg, #FAF7F2 0%, #F4EFE6 50%, #FFFFFF 100%);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    box-shadow: none;
    margin-bottom: -2px;
    overflow: hidden;
}

.process-container { position: relative; z-index: 5; max-width: 1520px; margin: 0 auto; }

/* Animated Floating Botanical Background */
.process-animated-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: morphOrb 14s infinite ease-in-out alternate;
}

.orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(13, 159, 103, 0.25) 0%, rgba(13, 159, 103, 0) 70%);
    top: -100px; left: -100px;
    animation-duration: 12s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.18) 0%, rgba(230, 126, 34, 0) 70%);
    bottom: -150px; right: -100px;
    animation-duration: 16s;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(11, 41, 24, 0.15) 0%, rgba(11, 41, 24, 0) 70%);
    top: 40%; left: 45%;
    animation-duration: 20s;
}

@keyframes morphOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.15); }
    100% { transform: translate(-40px, 50px) scale(0.9); }
}

.floating-particle {
    position: absolute;
    font-size: 24px;
    opacity: 0.35;
    animation: floatParticle 18s infinite ease-in-out;
}

.particle-1 { top: 15%; left: 8%; animation-duration: 16s; animation-delay: 0s; }
.particle-2 { top: 75%; left: 12%; animation-duration: 22s; animation-delay: 2s; }
.particle-3 { top: 20%; right: 10%; animation-duration: 19s; animation-delay: 1s; }
.particle-4 { top: 70%; right: 15%; animation-duration: 25s; animation-delay: 3s; }
.particle-5 { top: 45%; left: 85%; animation-duration: 21s; animation-delay: 4s; }

@keyframes floatParticle {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(15deg) scale(1.1); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}
.process-header { text-align: center; max-width: 760px; margin: 0 auto 48px auto; }
.process-heading { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--color-forest-dark); margin-bottom: 12px; text-transform: uppercase; }
.process-subtext { font-size: 15.5px; color: var(--color-sage-muted); line-height: 1.65; }

.process-timeline-wrapper { position: relative; margin-top: 20px; }
.process-connecting-line { position: absolute; top: 38px; left: 8%; right: 8%; height: 3px; background: rgba(13, 159, 103, 0.15); z-index: 1; }
.line-progress { height: 100%; width: 0%; background: var(--color-primary-green); transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.process-section.is-visible .line-progress { width: 100%; }

.process-steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; z-index: 2; }
.process-steps-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.step-card-header { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 12px; }
.process-step-card { background: #ffffff; padding: 28px 24px; border-radius: 22px; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 8px 24px rgba(11, 41, 24, 0.05); text-align: left; display: flex; flex-direction: column; align-items: flex-start; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.process-step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(11, 41, 24, 0.12); }
.step-badge-number { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--color-primary-green); background: rgba(13, 159, 103, 0.1); padding: 4px 14px; border-radius: 30px; }
.step-icon-box { width: 52px; height: 52px; border-radius: 50%; background: var(--color-forest-dark); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform 0.3s ease, background-color 0.3s ease; }
.process-step-card:hover .step-icon-box { background: var(--color-primary-green); transform: scale(1.1); }
.step-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--color-forest-dark); margin-bottom: 8px; letter-spacing: 0.4px; }
.step-desc { font-size: 14px; color: var(--color-sage-muted); line-height: 1.6; }

.step-tags-pills { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; width: 100%; }
.step-tag { font-size: 11px; font-weight: 700; color: var(--color-forest-dark); background: rgba(13, 159, 103, 0.08); padding: 4px 10px; border-radius: 12px; border: 1px solid rgba(13, 159, 103, 0.15); display: inline-flex; align-items: center; justify-content: flex-start; gap: 6px; }

/* Tagline Pill Card below process */
.process-bottom-tagline { margin-top: 44px; display: flex; justify-content: center; text-align: center; }
.tagline-pill-card { display: inline-flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #0b2918 0%, #164328 100%); color: #ffffff; padding: 18px 36px; border-radius: 50px; box-shadow: 0 12px 32px rgba(11, 41, 24, 0.18); border: 1px solid rgba(255, 255, 255, 0.12); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tagline-pill-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11, 41, 24, 0.28); }
.tagline-icon { font-size: 22px; color: var(--color-accent-gold); }
.tagline-text { font-family: var(--font-heading); font-size: 17px; font-weight: 700; letter-spacing: 0.5px; color: #ffffff; }

/* --------------------------------------------------------------------------
   7. QUALITY ASSURANCE SECTION (SEAMLESSLY BLENDED WITH PROCESS & LOCATIONS)
   -------------------------------------------------------------------------- */
.quality-section {
    position: relative;
    padding: 76px 48px 84px 48px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background-color: #ffffff;
    min-height: 640px;
    margin-top: -2px;
    margin-bottom: -2px;
}

.quality-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.quality-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: brightness(0.92) contrast(1.05);
    transition: transform 2s ease;
}

.quality-section:hover .quality-bg-img {
    transform: scale(1.02);
}

/* Seamless blend gradient from top #ffffff into misty farm sky and bottom #FBF8F3 */
.quality-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.92) 18%, 
        rgba(240, 247, 242, 0.75) 45%, 
        rgba(245, 243, 236, 0.88) 78%, 
        #FBF8F3 100%
    );
}

/* Moving Cloud Animation Background Layer */
.moving-clouds-container {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 240px;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.cloud-layer {
    position: absolute;
    top: 0;
    width: 200%;
    height: 100%;
}

.cloud-1 {
    animation: moveCloud 35s linear infinite;
    opacity: 0.6;
}

.cloud-2 {
    animation: moveCloud 55s linear infinite reverse;
    opacity: 0.4;
}

.cloud-3 {
    animation: moveCloud 45s linear infinite;
    opacity: 0.25;
}

@keyframes moveCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.quality-container {
    position: relative;
    z-index: 5;
    max-width: 1520px;
    margin: 0 auto;
}

.quality-header-center {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 52px auto;
}

.quality-script-heading {
    font-family: 'Dancing Script', 'Great Vibes', cursive;
    font-size: 52px;
    font-weight: 700;
    color: var(--color-forest-dark);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.quality-script-subtitle {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    color: #4a5568;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

/* Video Card Showcase */
.quality-video-wrapper {
    position: relative;
}

.quality-video-card {
    position: relative;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(11, 41, 24, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: var(--color-forest-dark);
}

.video-poster-img, .video-media-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.quality-video-card:hover .video-poster-img,
.quality-video-card:hover .video-media-element {
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
    transition: opacity 0.4s ease;
}

.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Auto-hide play button while video is playing for maximum video visibility */
.quality-video-card.is-playing .play-btn-wrapper {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.85);
}

.quality-video-card.is-playing:hover .play-btn-wrapper {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.quality-video-card.is-playing .video-card-overlay {
    opacity: 0.15;
}

.quality-video-card.is-playing:hover .video-card-overlay {
    opacity: 0.45;
}

.play-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--color-primary-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 30px var(--color-primary-green);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-btn-wrapper:hover .play-circle {
    transform: scale(1.12);
    background-color: #0fb879;
}

.play-text-ring {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: rotateRing 18s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-badge-pill {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(11, 41, 24, 0.85);
    backdrop-filter: blur(10px);
    color: #fce38a;
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(252, 227, 138, 0.3);
    z-index: 5;
}

.cert-badges-box {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.cert-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Glassmorphic Quality Feature Cards */
.quality-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quality-glass-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 12px 32px rgba(11, 41, 24, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.quality-glass-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(11, 41, 24, 0.18);
}

.quality-glass-card .item-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(13, 159, 103, 0.12);
    color: var(--color-primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(13, 159, 103, 0.2);
    transition: background 0.3s ease, color 0.3s ease;
}

.quality-glass-card:hover .item-icon-box {
    background: var(--color-primary-green);
    color: #ffffff;
}

.item-text-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--color-forest-dark);
    letter-spacing: 0.3px;
}

.item-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   BUSINESS NETWORK & EXPORT DIVISIONS SECTION
   -------------------------------------------------------------------------- */
.network-section { width: 100%; }
.network-container { max-width: 1600px; margin: 0 auto; }
.network-grid { display: grid; grid-template-columns: 440px 1fr; gap: 20px; min-height: 380px; }
.card-yellow-network { background-color: var(--color-forest-dark); color: #ffffff; border-radius: var(--radius-card); padding: 36px 32px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-card); transition: box-shadow 0.3s ease; }
.card-yellow-network:hover { box-shadow: var(--shadow-hover); }
.network-title { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: #ffffff; line-height: 1.08; letter-spacing: 0.5px; text-transform: uppercase; }
.network-map-visual { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; }
.network-route-svg { width: 100%; height: 100%; }
.network-badge-box { position: absolute; bottom: 24px; right: 24px; background: rgba(255, 255, 255, 0.95); padding: 12px 22px; border-radius: 18px; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.badge-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--color-forest-dark); letter-spacing: 0.5px; }
.badge-amp { font-size: 14px; font-weight: 700; color: var(--color-primary-green); margin: -2px 0; }
.card-peach-divisions { background-color: #eef4f0; border-radius: var(--radius-card); padding: 36px 40px; box-shadow: var(--shadow-card); display: flex; align-items: center; transition: box-shadow 0.3s ease; }
.card-peach-divisions:hover { box-shadow: var(--shadow-hover); }
.divisions-flex-layout { display: flex; align-items: center; justify-content: space-between; gap: 36px; width: 100%; }
.divisions-title { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--color-forest-dark); line-height: 1.08; margin-bottom: 24px; text-transform: uppercase; }
.divisions-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.division-item { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--color-sage-muted); letter-spacing: 0.5px; cursor: pointer; transition: color 0.2s ease; }
.division-item.active { color: var(--color-primary-green); display: flex; align-items: center; gap: 12px; }
.facility-photo-card { width: 460px; height: 290px; border-radius: 22px; overflow: hidden; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15); flex-shrink: 0; }
.facility-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.facility-photo-card:hover .facility-img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   GLOBAL EXPORT & SOURCE LOCATIONS SECTION (SEAMLESSLY BLENDED BACKGROUND)
   -------------------------------------------------------------------------- */
.locations-section {
    position: relative;
    padding: 70px 44px 80px 44px;
    background: linear-gradient(180deg, #FBF8F3 0%, #F0F7F2 38%, #174A2F 78%, #0B2918 100%);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    overflow: hidden;
    box-shadow: none;
}
.locations-container { position: relative; z-index: 2; max-width: 1520px; margin: 0 auto; }
.locations-header { text-align: center; max-width: 780px; margin: 0 auto 36px auto; }
.header-badge-pill { display: inline-flex; align-items: center; gap: 8px; background-color: rgba(13, 159, 103, 0.1); color: var(--color-primary-green); font-size: 12.5px; font-weight: 700; padding: 6px 18px; border-radius: 50px; margin-bottom: 14px; letter-spacing: 0.5px; }
.locations-heading { font-family: var(--font-display); font-size: 38px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; color: var(--color-forest-dark); }
.locations-subtext { font-size: 15.5px; line-height: 1.6; color: var(--color-sage-muted); font-weight: 500; }
.world-map-card { position: relative; width: 100%; max-width: 1440px; margin: 0 auto; background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 242, 234, 0.94) 100%); border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 26px; box-shadow: 0 16px 40px rgba(11, 41, 24, 0.06); padding: 24px; min-height: 520px; overflow: hidden; }
.map-svg-container { width: 100%; height: auto; position: relative; }
.world-map-svg { width: 100%; height: auto; display: block; }
.route-animated-path { animation: flowLine 20s linear infinite; }
@keyframes flowLine { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }
.beacon-pulse-ring { animation: pulseRing 3s ease-out infinite; }
.beacon-pulse-ring-2 { animation: pulseRing 3s ease-out 1.5s infinite; }
@keyframes pulseRing { 0% { r: 6px; opacity: 1; } 100% { r: 42px; opacity: 0; } }
.map-pin-badge { position: absolute; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(0, 0, 0, 0.08); padding: 5px 12px; border-radius: 30px; font-size: 11.5px; font-weight: 700; color: var(--color-nav-text); display: flex; align-items: center; gap: 6px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); transform: translate(-50%, -50%); transition: all 0.25s ease; white-space: nowrap; cursor: pointer; }
.map-pin-badge:hover { transform: translate(-50%, -50%) translateY(-4px); background: #ffffff; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); z-index: 50; }
.origin-hub-pin { background: var(--color-primary-green); color: #ffffff; border-color: var(--color-primary-green); font-size: 12.5px; padding: 6px 14px; z-index: 30; box-shadow: 0 8px 24px rgba(13, 159, 103, 0.35); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #ffffff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }
.flag-icon { font-size: 14px; }
.locations-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.stat-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 22px 24px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22); }
.stat-icon-box { width: 46px; height: 46px; border-radius: 14px; background: rgba(13, 159, 103, 0.12); color: var(--color-primary-green); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.stat-number { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--color-forest-dark); line-height: 1.1; }
.stat-label { font-size: 13px; font-weight: 600; color: var(--color-sage-muted); }

/* --------------------------------------------------------------------------
   GLOBAL PARTNERSHIPS SECTION
   -------------------------------------------------------------------------- */
.partnerships-section { padding: 54px 44px; background-color: var(--color-surface-warm); border-radius: var(--radius-card); text-align: center; box-shadow: var(--shadow-card); }
.partnerships-header { max-width: 780px; margin: 0 auto 32px auto; }
.partnerships-heading { font-family: var(--font-display); font-size: 34px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; line-height: 1.15; color: var(--color-forest-dark); }
.partnerships-subtext { font-size: 15.5px; color: var(--color-sage-muted); line-height: 1.6; font-weight: 500; }
.logo-track { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.partner-logo-card { background: #ffffff; padding: 18px 32px; border-radius: 20px; box-shadow: 0 8px 24px rgba(11, 41, 24, 0.05); border: 1px solid rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.partner-logo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(11, 41, 24, 0.12); }
.partner-brand-name { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: var(--color-forest-dark); letter-spacing: 0.5px; }

/* --------------------------------------------------------------------------
   8. PRESERVING FRESHNESS SECTION
   -------------------------------------------------------------------------- */
.preservation-section { width: 100%; }
.top-controls-divider { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.divider-line { flex: 1; height: 1px; border-bottom: 2px dashed rgba(0, 0, 0, 0.1); }
.divider-controls { display: flex; align-items: center; gap: 10px; }
.divider-arrow-btn { width: 42px; height: 42px; border-radius: 50%; background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.08); color: var(--color-forest-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: transform 0.25s ease, background-color 0.25s ease; }
.divider-arrow-btn:hover { transform: scale(1.1); background-color: var(--color-primary-green); color: #ffffff; }

.preservation-arch-card {
    background-color: #f4eedf;
    border-radius: 140px 140px 28px 28px;
    padding: 60px 48px 48px 48px;
    color: var(--color-forest-dark);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 41, 24, 0.08);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s ease;
}
.preservation-arch-card:hover { box-shadow: var(--shadow-hover); }

.preservation-arch-header { text-align: center; max-width: 780px; margin: 0 auto 36px auto; }
.preservation-arch-tagline { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--color-forest-dark); letter-spacing: 0.8px; margin-bottom: 10px; text-transform: uppercase; }
.preservation-arch-subtext { font-size: 15.5px; line-height: 1.6; color: #3b5242; font-weight: 500; }

.preservation-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.preservation-pill-card {
    background: #ffffff; color: var(--color-forest-dark);
    border-radius: 22px; padding: 24px 20px; text-align: center;
    box-shadow: 0 10px 28px rgba(11, 41, 24, 0.06);
    border: 2px solid rgba(11, 41, 24, 0.08); cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.preservation-pill-card:hover, .preservation-pill-card.active {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13, 159, 103, 0.25);
    border-color: var(--color-primary-green);
}
.pill-icon-box {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(13, 159, 103, 0.12); color: var(--color-primary-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin: 0 auto 12px auto;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.preservation-pill-card:hover .pill-icon-box, .preservation-pill-card.active .pill-icon-box {
    background-color: var(--color-primary-green); color: #ffffff; transform: scale(1.1);
}
.pill-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--color-forest-dark); margin-bottom: 6px; letter-spacing: 0.5px; }
.pill-desc { font-size: 13px; color: var(--color-sage-muted); line-height: 1.45; font-weight: 500; }

.preservation-slides-wrapper {
    position: relative; min-height: 340px;
    background: #ffffff;
    border-radius: 24px; padding: 28px;
    border: 1px solid rgba(11, 41, 24, 0.08);
    box-shadow: 0 12px 32px rgba(11, 41, 24, 0.05);
}
.preservation-slide {
    display: none; opacity: 0; transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.preservation-slide.active {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
    opacity: 1; transform: translateY(0);
}
.slide-visual-box {
    position: relative; width: 100%; height: 320px;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 12px 28px rgba(11, 41, 24, 0.12);
}
.preservation-slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.8s ease; }
.preservation-slide:hover .preservation-slide-img { transform: scale(1.05); }
.visual-badge {
    position: absolute; bottom: 16px; left: 16px; z-index: 5;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: var(--color-forest-dark); padding: 8px 18px; border-radius: 30px;
    font-family: var(--font-heading); font-size: 13px; font-weight: 800;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    animation: badgeFloat 3s ease-in-out infinite alternate;
}
.visual-badge i { color: var(--color-primary-green); font-size: 15px; }
@keyframes badgeFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-5px); } }

.slide-info-content { color: var(--color-forest-dark); padding: 10px; }
.slide-badge { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 800; color: var(--color-primary-green); letter-spacing: 1px; margin-bottom: 10px; }
.slide-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--color-forest-dark); margin-bottom: 14px; text-transform: uppercase; line-height: 1.12; letter-spacing: 0.5px; }
.slide-text { font-size: 15px; color: var(--color-sage-muted); line-height: 1.65; font-weight: 500; }

/* --------------------------------------------------------------------------
   10. GET A QUOTE FORM SECTION (100% PERFECTLY BLENDED & HIGHLY RESPONSIVE)
   -------------------------------------------------------------------------- */
.get-quote-section {
    position: relative;
    padding: 72px 44px;
    border-radius: 0;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(180deg, #0B2918 0%, #082113 60%, #04140B 100%);
    box-shadow: none;
    margin-top: -2px;
}
.quote-parallax-bg { position: absolute; inset: 0; z-index: 1; }
.quote-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; transform: scale(1.05); }
.quote-overlay-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(11, 41, 24, 0.0) 0%, 
        rgba(11, 41, 24, 0.70) 35%, 
        rgba(8, 33, 19, 0.95) 100%
    );
}

.quote-container { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; width: 100%; }
.quote-header-box { text-align: center; margin-bottom: 36px; padding: 0 12px; }
.quote-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 159, 103, 0.2);
    color: #00E68A;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 230, 138, 0.3);
}
.quote-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.quote-subtext {
    font-size: clamp(13.5px, 1.8vw, 15.5px);
    line-height: 1.6;
    color: #d1e2d4;
    max-width: 660px;
    margin: 0 auto;
}

.quote-form-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
    color: var(--color-forest-dark);
    border: 1px solid rgba(255, 255, 255, 0.95);
    width: 100%;
    box-sizing: border-box;
}

.quote-form { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.form-group.full-width { grid-column: span 2; }

.form-label {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-forest-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-label i { color: var(--color-primary-green); font-size: 14px; }
.required-star { color: #d32f2f; font-weight: 800; }

.form-input {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1.5px solid rgba(11, 41, 24, 0.15);
    background-color: #fcfaf5;
    color: var(--color-forest-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary-green);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 159, 103, 0.18);
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9f67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
}

.form-textarea { resize: vertical; min-height: 100px; padding-top: 14px; }

.form-submit-box { display: flex; justify-content: center; margin-top: 10px; width: 100%; }

.btn-whatsapp-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 480px;
}

.btn-whatsapp-submit:hover {
    background-color: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.48);
}
.btn-whatsapp-submit:active { transform: scale(0.96) !important; }
.btn-icon { font-size: 22px; }

/* --------------------------------------------------------------------------
   11. SITE FOOTER (SEAMLESSLY BLENDED WITH QUOTE SECTION)
   -------------------------------------------------------------------------- */
.site-footer {
    background: linear-gradient(180deg, #082113 0%, #04140B 100%);
    color: #e2ede5;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    padding: 56px 44px 24px 44px;
    box-shadow: none;
    margin-top: -2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-container { max-width: 1520px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.footer-logo-img { height: 50px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--color-primary-green); letter-spacing: 0.8px; margin-bottom: 12px; }
.footer-about-text { font-size: 13.5px; line-height: 1.6; color: #a8c4ae; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #ffffff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
.footer-socials a:hover { background: var(--color-primary-green); transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #ffffff; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #a8c4ae; text-decoration: none; font-size: 13.5px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--color-primary-green); }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #a8c4ae; }
.contact-info-list i { color: var(--color-primary-green); margin-top: 3px; }

/* Interactive Embedded Google Maps Card */
.footer-map-wrapper {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-map-wrapper:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary-green);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom-bar { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.copyright-text { font-size: 13px; color: #7f9c86; }

/* --------------------------------------------------------------------------
   13. SCROLL TO TOP BUTTON
   -------------------------------------------------------------------------- */
.scroll-top-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-primary-green); color: #ffffff;
    display: flex; align-items: center; justify-content: center; text-decoration: none;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-3px); background-color: #0b8a59; }

/* --------------------------------------------------------------------------
   4. SCROLL REVEAL ANIMATIONS (600–900ms, cubic-bezier(0.22, 1, 0.36, 1))
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
    .poster-slide { transition: none !important; }
    .hero-banner-img { transition: none !important; }
}

/* --------------------------------------------------------------------------
   15. FULL RESPONSIVE DESIGN SYSTEM (DESKTOP, LAPTOP, TABLET & MOBILE)
   -------------------------------------------------------------------------- */
/* Ultra Wide Desktop (1400px+) */
@media (max-width: 1400px) {
    .hero-grid { grid-template-columns: 380px 1fr; min-height: 600px; }
    .left-card, .right-card { min-height: 600px; }
    .network-grid { grid-template-columns: 380px 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 36px; }
}

/* Laptops & Standard Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 24px; }
    .left-card { height: 480px; min-height: 480px; }
    .right-card { min-height: 480px; }
    .about-section { padding: 56px 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-video-card { height: 380px; }
    .script-heading { font-size: 38px; }
    .products-grid-container { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .tile-chilli, .tile-ginger, .tile-okra, .tile-drumsticks { grid-column: span 1; grid-row: auto; min-height: 260px; }
    .tile-explore-more { grid-column: span 2; grid-row: auto; min-height: 320px; }
    .process-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-connecting-line { display: none; }
    .quality-grid { grid-template-columns: 1fr; gap: 36px; }
    .network-grid { grid-template-columns: 1fr; }
    .divisions-flex-layout { flex-direction: column; align-items: flex-start; }
    .facility-photo-card { width: 100%; height: 260px; }
    .locations-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* Tablets & iPads (768px - 991px) */
@media (max-width: 991px) {
    body { padding: 0 10px 16px 10px; }
    .page-wrapper { padding-top: 80px; }
    .site-header { padding: 12px 20px; z-index: 10000; }
    .header-container { display: flex; align-items: center; justify-content: space-between; position: relative; }
    .header-cta { display: none !important; }
    .mobile-menu-toggle { display: flex !important; align-items: center; justify-content: center; margin-left: auto; font-size: 26px; padding: 8px 12px; color: var(--color-forest-dark); cursor: pointer; z-index: 10002; background: none; border: none; }
    .mobile-menu-toggle i { pointer-events: none; }
    .main-nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background-color: rgba(249, 251, 249, 0.98); backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 20px; box-shadow: 0 18px 40px rgba(0,0,0,0.22); padding: 24px; margin-top: 10px;
        opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 0.3s ease, transform 0.3s ease; z-index: 10001;
        border: 1px solid rgba(13, 159, 103, 0.2);
    }
    .main-nav.open { display: block !important; opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 16px; }
    .nav-link { font-size: 15px; width: 100%; display: block; padding: 6px 0; }
    
    .left-card { height: 440px; min-height: 440px; background: transparent !important; padding: 0 !important; box-shadow: none !important; }
    .right-card { min-height: 440px; background: transparent !important; box-shadow: none !important; }
    .hero-headline { font-size: 34px; }
    
    .about-section { padding: 44px 24px; }
    .about-video-card { height: 320px; border-radius: 20px; }
    .script-heading { font-size: 32px; margin-bottom: 16px; }
    
    .products-grid-container { grid-template-columns: 1fr; }
    .tile-chilli, .tile-ginger, .tile-okra, .tile-drumsticks, .tile-explore-more { grid-column: span 1; }
    .grid-tile { flex-direction: column; }
    .tile-half { width: 100%; height: 220px; }
    
    .process-steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .process-card { padding: 32px 24px; }
    
    .quality-section { padding: 48px 24px; }
    .quality-script-heading { font-size: 32px; }
    .quality-video-card { height: 300px; }
    
    .world-map-card { min-height: 340px; padding: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .locations-stats-bar { grid-template-columns: repeat(2, 1fr); }
    
    .get-quote-section { padding: 56px 24px; }
    .quote-form-card { padding: 32px 24px; border-radius: 24px; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .quote-heading { font-size: 30px; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .site-footer { padding: 48px 24px 24px 24px; }
}

/* Mobile Phones (Portrait & Narrow Screens: 320px - 767px) */
@media (max-width: 767px) {
    body { padding: 0 6px 12px 6px; }
    .page-wrapper { padding-top: 74px; }
    .site-header { padding: 10px 14px; }
    .logo-img { height: 42px; }
    .phone-number { display: none; }
    .whatsapp-btn { padding: 8px 12px; border-radius: 30px; }
    
    .hero-grid { display: flex; flex-direction: column; gap: 14px; }
    .left-card { height: 360px; min-height: 360px; width: 100%; padding: 0 !important; background: transparent !important; box-shadow: none !important; border-radius: 20px; overflow: hidden; }
    .right-card { height: 280px; min-height: 280px; width: 100%; padding: 0 !important; background: transparent !important; box-shadow: none !important; border-radius: 20px; overflow: hidden; position: relative; }
    .banner-bg-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; border-radius: 20px; }
    .hero-banner-img { width: 100%; height: 100%; object-fit: cover !important; object-position: center !important; border-radius: 20px; display: block; }
    .hero-headline { font-size: 26px; }
    .center-logo-box { padding: 12px 18px; }
    .center-logo-img { height: 44px; }
    
    .about-section { padding: 32px 16px; border-radius: 18px; }
    .about-video-card { height: 240px; border-radius: 16px; }
    .about-video-badge { font-size: 10px; padding: 6px 12px; top: 12px; left: 12px; }
    .about-video-sound-btn { width: 36px; height: 36px; font-size: 13px; bottom: 12px; right: 12px; }
    .script-heading { font-size: 26px; }
    .narrative-p { font-size: 14px; line-height: 1.65; }
    
    .products-grid-section { padding: 36px 12px; }
    .products-heading { font-size: 26px; }
    
    .process-section { padding: 40px 16px; }
    .process-heading { font-size: 24px; }
    .process-card { padding: 24px 18px; border-radius: 20px; }
    
    .quality-section { padding: 36px 16px; }
    .quality-script-heading { font-size: 26px; }
    .quality-glass-card { padding: 16px; gap: 14px; border-radius: 18px; }
    .quality-glass-card .item-icon-box { width: 40px; height: 40px; font-size: 17px; }
    .quality-video-card { height: 240px; border-radius: 18px; }
    
    .locations-section { padding: 36px 12px; }
    .locations-heading { font-size: 22px; }
    .locations-subtext { font-size: 13.5px; }
    .world-map-card { min-height: auto !important; padding: 12px 8px; border-radius: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .map-svg-container { min-width: 540px; position: relative; }
    .map-pin-badge { font-size: 9.5px !important; padding: 3px 8px !important; }
    .origin-hub-pin { font-size: 10.5px !important; padding: 4px 10px !important; }
    .locations-stats-bar { grid-template-columns: 1fr; gap: 14px; }
    .stat-card { padding: 16px 18px; }
    .stat-number { font-size: 24px; }
    
    .get-quote-section { padding: 40px 14px; }
    .quote-header-box { margin-bottom: 24px; padding: 0; }
    .quote-heading { font-size: 24px; }
    .quote-form-card { padding: 24px 16px; border-radius: 20px; }
    .btn-whatsapp-submit { padding: 14px 16px; font-size: 13.5px; gap: 8px; width: 100%; }
    .form-input { padding: 10px 14px; min-height: 46px; font-size: 15px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .site-footer { padding: 40px 16px 20px 16px; }
    .footer-bottom-bar { flex-direction: column; gap: 14px; text-align: center; }
    
    .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
    .floating-btn { width: 46px; height: 46px; font-size: 18px; }
}
