﻿/* ============================================
   LAVIE FOODS - Main Stylesheet
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #2D7D46;       /* Forest Green */
    --primary-dark: #1D5C32;
    --primary-light: #3A9D5C;
    --accent: #E8A838;        /* Golden Yellow */
    --accent-light: #F5C96A;
    --dark: #1A1A2E;          /* Deep Navy */
    --dark-secondary: #16213E;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #F8FAF8;
    --bg-white: #FFFFFF;
    --border: #E5E8E5;
    --success: #27AE60;
    --error: #E74C3C;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,125,70,0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
}
.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}
.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--bg-white) !important;
    border-radius: var(--radius-sm);
    padding: 8px 20px;
}
.btn-nav:hover {
    background-color: var(--primary-dark) !important;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
    background-color: rgba(45,125,70,0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-farm.jpg') center/cover no-repeat fixed;
    background-color: var(--primary-dark);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(45,125,70,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13,32,19,0.88) 0%, rgba(13,32,19,0.62) 45%, rgba(13,32,19,0.32) 100%);
    z-index: 1;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.28);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.28);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.hero-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
}

.hero-card .card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card .card-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    margin-top: 72px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,125,70,0.2) 0%, transparent 100%);
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   PRODUCT CARDS (Homepage)
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.product-tag.hot {
    background-color: #E74C3C;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.6;
}

.product-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.product-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text .section-title {
    font-size: 2rem;
}

.features-desc {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.features-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:first-child {
    grid-column: 1 / -1;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.fc-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20.5h-2zM20 35.5V33H0v-2h20v-2H0v-2h20v-2H0V23h20v-2H0V19h20v-2H0v-2h20v-2H0v-2h20v-2H0V9h20V7H0V5h20V3H0V1h22v10.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2V1H0v2h22v4.5h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.process .section-header h2,
.process .section-header .section-tag {
    color: var(--bg-white);
}

.process .section-header .section-tag {
    color: var(--accent-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    padding: 0 32px;
    flex: 1;
    max-width: 260px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    margin-bottom: -10px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testi-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 1.6rem;
}

.footer-logo .logo-img {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.contact-list li i {
    margin-top: 3px;
    color: var(--primary-light);
    min-width: 14px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img {
    position: relative;
}

.story-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.story-text .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.story-stat {
    display: flex;
    flex-direction: column;
}

.story-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.story-stat span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Values */
.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Certifications */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(232,168,56,0.15);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cert-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cert-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.filter-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 72px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text);
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-section {
    padding-top: 48px;
}

.full-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card-full {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-card-full:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-full.hidden {
    display: none;
}

.pcf-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pcf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-full:hover .pcf-img img {
    transform: scale(1.08);
}

.pcf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-full:hover .pcf-overlay {
    opacity: 1;
}

.pcf-body {
    padding: 20px;
}

.pcf-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
    border: 1px solid var(--primary);
    padding: 2px 10px;
    border-radius: 50px;
}

.pcf-tag.hot {
    color: #E74C3C;
    border-color: #E74C3C;
}

.pcf-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pcf-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.6;
}

.pcf-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pcf-details span {
    font-size: 0.75rem;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pcf-details i {
    color: var(--primary);
}

/* ============================================
   WHY US PAGE
   ============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.advantage-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.advantage-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(45,125,70,0.06);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Compare Table */
.compare-section {
    background: var(--bg-light);
}

.compare-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.compare-table thead th {
    background: var(--dark);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 18px 24px;
    text-align: left;
}

.compare-table thead th:first-child {
    color: rgba(255,255,255,0.6);
}

.compare-table tbody td {
    padding: 16px 24px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: var(--bg-light);
}

.highlight-cell {
    color: var(--primary);
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,125,70,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-submit {
    margin-top: 8px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-info-card > p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(45,125,70,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text);
}

.contact-item a {
    color: var(--primary);
}
.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-map-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: var(--bg-white);
}

.contact-map-card h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-map-card > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.map-placeholder {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.social-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}

.social-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        flex-direction: row;
    }

    .hero-card {
        flex: 1;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-grid,
    .full-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .certs-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 24px;
    }

    .step-arrow {
        display: none;
    }

    .step {
        flex: 0 0 calc(50% - 12px);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-badge {
        bottom: 16px;
        right: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a {
        border-bottom: none;
        background: none;
        text-align: center;
        margin-top: 8px;
        padding: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 80px 24px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        flex-direction: column;
        padding: 0 24px 40px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .product-grid,
    .full-product-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .certs-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .page-hero {
        height: 240px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .story-stats {
        flex-direction: column;
        gap: 16px;
    }

    .step {
        flex: 0 0 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .page-hero-content h1 {
        font-size: 1.6rem;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 24px;
    }
}

/* WhatsApp footer link */
.whatsapp-link{color:#25D366;font-weight:500;text-decoration:none;}
.whatsapp-link:hover{color:#1ebe5b;text-decoration:underline;}
.whatsapp-link .fa-whatsapp{margin-right:6px;}

/* Floating WhatsApp button */
.wa-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:56px;
    height:56px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 4px 14px rgba(37,211,102,.45);
    z-index:9999;
    transition:transform .2s ease, box-shadow .2s ease;
    animation:wa-pulse 2.5s infinite;
}
.wa-float:hover{transform:scale(1.08);box-shadow:0 6px 20px rgba(37,211,102,.6);}
.wa-float .fa-whatsapp{line-height:1;}
@keyframes wa-pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);}
    70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* legal pages (privacy) */
.legal-content { max-width: 820px; margin: 0 auto; line-height: 1.85; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 2.2rem 0 0.8rem; color: #2D7D46; }
.legal-content p { margin-bottom: 1rem; color: #444; }
.legal-content ul { margin: 0 0 1.25rem 1.4rem; list-style: disc; }
.legal-content li { margin-bottom: 0.45rem; color: #444; }
.legal-content a { color: #2D7D46; font-weight: 500; }
