/* ==========================================================================
   MULTİFRUİT Corporate Theme - Premium Light-Organic Style Sheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-darker: #f5f8f6;
    --bg-dark: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(16, 185, 129, 0.08);
    --border-glow: rgba(16, 185, 129, 0.15);
    
    --primary: #10b981;
    --primary-rgb: 16, 185, 129;
    --secondary: #f97316;
    --secondary-rgb: 249, 115, 22;
    --accent: #ef4444;
    --text-main: #1c2e23;
    --text-muted: #526657;
    --text-dim: #7f9485;
    --white: #ffffff;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.12);
    --shadow-card: 0 15px 40px rgba(16, 46, 28, 0.06), 0 3px 12px rgba(0, 0, 0, 0.02);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

/* Grain Overlay (Premium tactile layer) */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Scroll Offset Helper */
.scroll-offset {
    scroll-margin-top: 90px;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Custom Grid/Container system */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    outline: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #059669);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4), 0 0 10px rgba(16, 185, 129, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(16, 185, 129, 0.25);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.04);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header Section */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 248, 246, 0.8);
    backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-medium);
}

.main-header.scrolled .header-container {
    height: 70px;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-svg {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.15));
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-main), #526657);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header Actions & Language Switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px;
    border-radius: var(--radius-full);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active {
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-medium);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Slide Art Background Gradients */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.hero-slide.active .hero-bg-img {
    transform: scale(1.04);
}

/* Custom Vector Background Gradients (Light) */
.bg-emerald {
    background: radial-gradient(circle at 75% 40%, #e6f9f0 0%, #f0faf4 50%, #f5f8f6 100%);
}

.bg-citrus {
    background: radial-gradient(circle at 75% 40%, #fff6e6 0%, #fffbf5 50%, #f5f8f6 100%);
}

.bg-grape {
    background: radial-gradient(circle at 75% 40%, #faf0fc 0%, #fef8ff 50%, #f5f8f6 100%);
}

.bg-fields {
    background: radial-gradient(circle at 75% 40%, #f1faf0 0%, #f7fcf5 50%, #f5f8f6 100%);
    position: relative;
}

.bg-logistic {
    background: radial-gradient(circle at 75% 40%, #e6f7fa 0%, #f0fbfc 50%, #f5f8f6 100%);
}

/* Perspective Grid styling */
.grid-perspective {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(300px) rotateX(70deg);
    transform-origin: bottom center;
    opacity: 0.8;
}

/* Interactive SVG Logistic Paths */
.logistic-line-svg {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 50%;
    height: 90%;
    z-index: 2;
    opacity: 0.7;
}

.logistic-line-svg path {
    stroke-dasharray: 8, 8;
    stroke-dashoffset: 100;
    animation: logisticDash 10s infinite linear;
}

@keyframes logisticDash {
    to { stroke-dashoffset: 0; }
}

/* Floating Particles inside Slides */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 20s infinite linear;
}

/* Particle styling (Light theme adapt) */
.leaf-1 {
    width: 30px;
    height: 15px;
    background: var(--primary);
    border-radius: 100% 0 100% 0;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
    left: 15%;
    top: 25%;
    transform: rotate(45deg);
    animation-duration: 25s;
    animation-name: particleFloatLeaf1;
}

.leaf-2 {
    width: 20px;
    height: 10px;
    background: #84cc16;
    border-radius: 100% 0 100% 0;
    box-shadow: 0 0 12px rgba(132, 204, 22, 0.2);
    left: 45%;
    top: 60%;
    transform: rotate(15deg);
    animation-duration: 18s;
    animation-name: particleFloatLeaf2;
}

.leaf-3 {
    width: 24px;
    height: 12px;
    background: var(--primary);
    border-radius: 100% 0 100% 0;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
    left: 70%;
    top: 35%;
    transform: rotate(-30deg);
    animation-duration: 22s;
    animation-name: particleFloatLeaf3;
}

.orange-1 {
    width: 22px;
    height: 22px;
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.25);
    left: 20%;
    top: 30%;
    animation-duration: 24s;
    animation-name: particleFloatCircle;
}

.orange-2 {
    width: 14px;
    height: 14px;
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    left: 60%;
    top: 50%;
    animation-duration: 16s;
    animation-delay: 2s;
    animation-name: particleFloatCircle;
}

.orange-3 {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    box-shadow: 0 0 18px rgba(249, 115, 22, 0.25);
    left: 75%;
    top: 20%;
    animation-duration: 28s;
    animation-name: particleFloatCircle;
}

.grape-1 {
    width: 18px;
    height: 18px;
    background: #a855f7;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
    left: 30%;
    top: 40%;
    animation-duration: 20s;
    animation-name: particleFloatCircle;
}

.grape-2 {
    width: 22px;
    height: 22px;
    background: #8b5cf6;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
    left: 65%;
    top: 30%;
    animation-duration: 22s;
    animation-name: particleFloatCircle;
}

.spike-1 {
    width: 8px;
    height: 22px;
    background: #eab308;
    border-radius: 50% 50% 0 0;
    left: 40%;
    top: 50%;
    transform: rotate(20deg);
    animation-duration: 18s;
    animation-name: particleFloatSpike;
}

.spike-2 {
    width: 6px;
    height: 16px;
    background: #d97706;
    border-radius: 50% 50% 0 0;
    left: 60%;
    top: 60%;
    transform: rotate(-10deg);
    animation-duration: 15s;
    animation-name: particleFloatSpike;
}

/* Bubbles */
.bubble-1, .bubble-2, .bubble-3, .bubble-4, .bubble-5, .bubble-6, .bubble-7 {
    width: 7px;
    height: 7px;
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.1);
    animation-name: particleFloatBubble;
}

.bubble-1 { left: 10%; animation-duration: 12s; }
.bubble-2 { left: 35%; animation-duration: 15s; animation-delay: 1s; }
.bubble-3 { left: 55%; animation-duration: 18s; }
.bubble-4 { left: 85%; animation-duration: 14s; animation-delay: 2s; }
.bubble-5 { left: 25%; animation-duration: 16s; }
.bubble-6 { left: 78%; animation-duration: 17s; }
.bubble-7 { left: 50%; animation-duration: 19s; }

/* Particle Animations Keyframes */
@keyframes particleFloatLeaf1 {
    0% { transform: translateY(80vh) translateX(0) rotate(0deg); opacity: 0; }
    15% { opacity: 0.35; }
    85% { opacity: 0.35; }
    100% { transform: translateY(-20vh) translateX(80px) rotate(360deg); opacity: 0; }
}

@keyframes particleFloatLeaf2 {
    0% { transform: translateY(80vh) translateX(0) rotate(0deg); opacity: 0; }
    15% { opacity: 0.25; }
    85% { opacity: 0.25; }
    100% { transform: translateY(-20vh) translateX(-60px) rotate(-180deg); opacity: 0; }
}

@keyframes particleFloatLeaf3 {
    0% { transform: translateY(80vh) translateX(0) rotate(0deg); opacity: 0; }
    15% { opacity: 0.35; }
    85% { opacity: 0.35; }
    100% { transform: translateY(-20vh) translateX(40px) rotate(270deg); opacity: 0; }
}

@keyframes particleFloatCircle {
    0% { transform: translateY(80vh) scale(0.6); opacity: 0; }
    20% { opacity: 0.3; }
    80% { opacity: 0.3; }
    100% { transform: translateY(-20vh) scale(1.1); opacity: 0; }
}

@keyframes particleFloatSpike {
    0% { transform: translateY(80vh) rotate(0deg); opacity: 0; }
    20% { opacity: 0.25; }
    80% { opacity: 0.25; }
    100% { transform: translateY(-20vh) rotate(120deg); opacity: 0; }
}

@keyframes particleFloatBubble {
    0% { transform: translateY(80vh); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-20vh); opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(245, 248, 246, 1) 0%, 
        rgba(245, 248, 246, 0.94) 40%, 
        rgba(245, 248, 246, 0.5) 80%,
        rgba(245, 248, 246, 0.15) 100%);
    z-index: 3;
}

/* Hero Slider Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-slider-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: 5.5rem;
    }
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
    outline: none;
}

.slider-dot:hover {
    background: rgba(16, 185, 129, 0.3);
}

.slider-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    transform: scale(1.25);
}

.hero-container {
    position: relative;
    z-index: 4;
}

.hero-content {
    max-width: 680px;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll down indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.scroll-down:hover {
    color: var(--primary);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--primary);
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0% { transform: translateY(-100%); }
    80% { transform: translateY(350%); }
    100% { transform: translateY(350%); }
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 45px rgba(16, 46, 28, 0.08), var(--shadow-glow);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Common Section Header */
.section-header {
    margin-bottom: 3.5rem;
    max-width: 650px;
}

.section-header.center-align {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-top: 1rem;
    border-radius: var(--radius-full);
}

.section-header.center-align .section-title::after {
    margin: 1rem auto 0 auto;
}

.section-subtitle {
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content .lead-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text-content p:not(:last-child) {
    margin-bottom: 1.25rem;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.value-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
}

.value-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(16, 46, 28, 0.08);
}

.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition-medium);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    position: relative;
}

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

.product-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(16, 46, 28, 0.1), var(--shadow-glow);
}

.product-visual-icon {
    height: 200px;
    background: #f8faf9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-visual-icon .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-visual-icon svg {
    width: 100px;
    height: 100px;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-visual-icon svg {
    transform: scale(1.12) rotate(4deg);
}

/* Custom glowing shadows per product icon container */
.icon-fruits svg {
    filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.2));
}

.icon-vegetables svg {
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.25));
}

.icon-dried svg {
    filter: drop-shadow(0 2px 8px rgba(132, 204, 22, 0.25));
}

.icon-grains svg {
    filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.2));
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
    width: fit-content;
}

.product-cta-btn:hover {
    color: var(--secondary);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.product-cta-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(28, 46, 35, 0.9) 0%, rgba(28, 46, 35, 0.3) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(16, 46, 28, 0.08), var(--shadow-glow);
}

.gallery-item:hover::after {
    opacity: 0.9;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(5px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.gallery-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Corporate Section */
.corporate-section {
    padding: 80px 0;
    background: radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 40%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(110%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.corp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.corp-info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
    transition: all var(--transition-medium);
}

.corp-info-card:hover {
    border-color: rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 46, 28, 0.05);
}

.corp-icon {
    width: 52px;
    height: 52px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.corp-info-card:hover .corp-icon {
    color: var(--secondary);
    background: rgba(249, 115, 22, 0.05);
}

.corp-icon svg {
    width: 26px;
    height: 26px;
}

.corp-details h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.corp-details p {
    color: var(--text-main);
    font-weight: 600;
}

.corp-details .highlight-info {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.corp-info-card.full-width {
    grid-column: span 3;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.item-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.item-icon svg {
    width: 20px;
    height: 20px;
}

.item-text h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.item-text p, .contact-link {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--primary);
}

/* Stylized Map Mockup */
.map-mockup {
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.map-header {
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.map-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.map-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf2ed;
    position: relative;
    padding: 1rem;
}

.world-map-svg {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.world-map-svg rect {
    fill: none;
}

/* SVG Line Animation */
.world-map-svg path[stroke-dasharray] {
    stroke-dashoffset: 100;
    animation: flowRoutes 8s infinite linear;
}

@keyframes flowRoutes {
    to { stroke-dashoffset: 0; }
}

.pulse-dot {
    animation: markerPulse 3s infinite;
    transform-origin: center;
}

@keyframes markerPulse {
    0% { r: 3px; fill-opacity: 0.8; }
    50% { r: 7px; fill-opacity: 0.3; }
    100% { r: 3px; fill-opacity: 0.8; }
}

/* Contact Form */
.contact-form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 580px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d4ded6;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23526657' 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 1.25rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

textarea {
    resize: none;
}

/* Error Messages */
.error-msg {
    display: none;
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 0.35rem;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.08);
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.form-group.has-error .error-msg {
    display: block;
}

/* Submit Button & Loader Spinner */
#submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    animation: rotate 2s linear infinite;
}

#submit-btn .spinner .path {
    stroke: var(--white);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

#submit-btn.loading .btn-text {
    display: none;
}

#submit-btn.loading .spinner {
    display: block;
}

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

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Form Success State Alert */
.success-alert {
    display: none;
    margin-top: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    align-items: center;
    gap: 1rem;
}

.success-alert.show {
    display: flex;
    animation: alertEntrance 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-alert.hide {
    animation: alertExit 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

.alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon svg {
    width: 16px;
    height: 16px;
}

.alert-text {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

@keyframes alertEntrance {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes alertExit {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

/* Footer Styling */
.main-footer {
    background-color: #f0f4f1;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding: 80px 0 0 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo-text {
    color: var(--text-main);
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4, .footer-legal h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    position: relative;
}

.footer-links h4::after, .footer-legal h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-top: 0.5rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-legal span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(16, 185, 129, 0.06);
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright, .legal-links a, .developer-credit {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.developer-credit .dev-link {
    color: var(--text-muted);
    font-weight: 600;
}

.developer-credit .dev-link:hover, .legal-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.15);
}

/* Mobile Nav Overlay & Hamburger */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-medium), visibility var(--transition-medium);
}

.mobile-nav-overlay.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

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

/* Tablet & Mobile Breakpoints */
@media (max-width: 1024px) {
    .desktop-nav, #nav-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hamburger Active state */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    .corp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .corp-info-card.full-width {
        grid-column: span 2;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 680px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stats-section {
        margin-top: -30px;
    }
    .corp-grid {
        grid-template-columns: 1fr;
    }
    .corp-info-card.full-width {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Extra Mobile Optimizations for spacing, cards, and layouts */
@media (max-width: 580px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    .product-content {
        padding: 1.25rem;
    }
    .product-visual-icon {
        height: 160px;
    }
    .corp-info-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    .contact-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* Hero Mesh Pattern Overlay */
.mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(16, 185, 129, 0.03) 1.5px, transparent 1.5px),
        radial-gradient(rgba(16, 185, 129, 0.03) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 3;
}

/* Premium Primary Button Shine Animation */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 150%;
    transition: all 0.75s ease-in-out;
}

/* Product Card Overlay & Badges */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 46, 28, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
    cursor: pointer;
    z-index: 1;
}

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

.view-details-btn {
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

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

.view-details-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Modal Overlay & Transitions */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28, 46, 35, 0.4);
    backdrop-filter: blur(12px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 820px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-medium);
    z-index: 10003;
    padding: 0;
}

.modal-overlay.open .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.modal-body-content {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
}

@media (max-width: 768px) {
    .modal-body-content {
        grid-template-columns: 1fr;
    }
    .modal-image-wrapper {
        height: 180px;
    }
}

.modal-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 320px;
    position: relative;
}

#modal-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text-wrapper {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 580px) {
    .modal-text-wrapper {
        padding: 1.5rem;
    }
}

.modal-badge {
    align-self: flex-start;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

#modal-product-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#modal-product-desc-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-specs-list {
    list-style: none;
    margin: 1rem 0 2rem 0;
    padding: 0;
}

.modal-specs-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(16, 185, 129, 0.08);
    padding-bottom: 0.35rem;
}

.modal-specs-list li strong {
    color: var(--text-main);
}

/* Organic Wavy Dividers */
.organic-divider-top, .organic-divider-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    pointer-events: none;
    background: transparent;
}

.organic-divider-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotate(180deg);
}

.organic-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Supply Chain Timeline */
.journey-section {
    padding: 80px 0;
    background: #f5f8f6;
    position: relative;
    z-index: 5;
}

.timeline-container {
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
    opacity: 0.15;
}

@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 450px;
        margin: 0 auto;
    }
}

.timeline-step {
    text-align: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
}

.timeline-step:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 25px 50px rgba(16, 46, 28, 0.06), var(--shadow-glow);
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-medium);
}

.timeline-step:hover .step-icon-wrapper {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.step-icon {
    width: 32px;
    height: 32px;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.step-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    font-family: var(--font-display);
    color: rgba(16, 185, 129, 0.08);
    line-height: 1;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

.client-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.client-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* FAQ Accordion */
.faq-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.02) 0%, transparent 50%);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 25px rgba(16, 46, 28, 0.03);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    text-align: left;
}

.faq-question {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-icon-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) ease-out;
}

.faq-content-inner {
    padding: 0 2rem 1.5rem 2rem;
}

.faq-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

