/* ===========================
   CSS RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant Color Palette */
    --primary-green: #16a34a;
    --primary-green-light: #22c55e;
    --primary-green-dark: #15803d;
    --secondary-blue: #3b82f6;
    --secondary-purple: #8b5cf6;
    --accent-gold: #f59e0b;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --accent-teal: #14b8a6;
    
    /* Neutrals */
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #cbd5e1;
    --off-white: #f8fafc;
    --white: #ffffff;
    
    /* Vibrant Gradients */
    --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #14b8a6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #fbbf24 100%);
    --gradient-sunset: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #f59e0b 100%);
    --gradient-ocean: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-forest: linear-gradient(135deg, #10b981 0%, #16a34a 50%, #065f46 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 30px rgba(22, 163, 74, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(212, 160, 23, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =================
   NAVIGATION
   =================*/
/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(22, 163, 74, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu a {
    padding: 12px 20px;
    color: var(--dark);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* =================
   HERO SECTION
   ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 50%, #2d5016 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10L20 20M30 10L40 20M50 10L60 20M70 10L80 20M10 30L20 40M30 30L40 40M50 30L60 40M70 30L80 40M10 50L20 60M30 50L40 60M50 50L60 60M70 50L80 60M10 70L20 80M30 70L40 80M50 70L60 80M70 70L80 80" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    color: var(--white);
    margin-bottom: 25px;
    animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--primary-green);
}

.btn-light:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold-light);
    font-family: var(--font-heading);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 10px auto 0;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* =================
   FEATURES SECTION
   ================= */
.features {
    padding: var(--section-padding);
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-green);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* =================
   MISSION SECTION
   ================= */
.mission-section {
    padding: var(--section-padding);
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.mission-content h2 {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    margin: 30px 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.mission-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-green);
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-card {
    background: var(--gradient-primary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.visual-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.visual-card.card-1 {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
}

.visual-card.card-2 {
    background: linear-gradient(135deg, #d4a017 0%, #f4c430 100%);
}

.visual-card.card-3 {
    background: linear-gradient(135deg, #4a7c2c 0%, #2d5016 100%);
}

.visual-card.card-4 {
    background: linear-gradient(135deg, #f4c430 0%, #d4a017 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
}

/* =================
   CTA SECTION
   ================= */
.cta-section {
    padding: 100px 20px;
    background: var(--gradient-overlay),
                url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M50 50L100 100M150 50L100 100M50 150L100 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: cover, 200px 200px;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =================
   FOOTER
   ================= */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    color: var(--accent-gold);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* =================
   PAGE HEADER
   ================= */
.page-header {
    padding: 150px 20px 100px;
    background: var(--gradient-overlay),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: cover, 100px 100px;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(74, 124, 44, 0.8) 100%);
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* =================
   ABOUT PAGE
   ================= */
.company-story {
    padding: var(--section-padding);
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 160, 23, 0.1);
    color: var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.story-content h2 {
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(212, 160, 23, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 30px;
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-box h4 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.timeline-card {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 20px;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.timeline-card h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.core-values {
    padding: var(--section-padding);
    background: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    color: var(--primary-green);
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.vision-mission {
    padding: var(--section-padding);
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.vm-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vm-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
}

.vm-header h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
}

.vm-content ul {
    list-style: none;
}

.vm-content li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.vm-content li:hover {
    background: rgba(212, 160, 23, 0.05);
    transform: translateX(5px);
}

.vm-content svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-green);
}

/* =================
   PRODUCTS PAGE
   ================= */
.products-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
}

.product-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.product-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    color: var(--primary-green);
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.product-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-card > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    margin: 25px 0;
}

.product-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.product-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
    margin-top: 10px;
}

.product-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.why-choose-products {
    padding: var(--section-padding);
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    margin-bottom: 15px;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.benefit-item:hover {
    background: rgba(212, 160, 23, 0.05);
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 5px;
    color: var(--primary-green);
}

.benefit-item p {
    color: var(--gray);
    margin-bottom: 0;
}

.why-choose-visual {
    display: grid;
    gap: 20px;
}

.stats-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.stats-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* =================
   CONTACT PAGE
   ================= */
.contact-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    display: block;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-header h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.info-header p {
    color: var(--gray);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.info-card a {
    color: var(--accent-gold);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-subtitle {
    font-size: 0.9rem;
    color: var(--gray) !important;
}

.business-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.business-hours h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--off-white);
    border-radius: 10px;
}

.hours-item span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.hours-item span:last-child {
    color: var(--gray);
}

.map-section {
    padding: 60px 20px;
    background: var(--white);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-green);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(74, 124, 44, 0.8) 100%);
    color: var(--white);
}

.map-overlay svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* =================
   CONTACT PAGE - NEW LAYOUT
   ================= */
.map-section-top {
    padding: 80px 20px;
    background: var(--off-white);
}

.map-section-top h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.map-subtitle {
   text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* Contact Information Cards */
.contact-info-section {
    padding: 80px 20px;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
    background: var(--white);
}

.contact-card.featured-contact {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-color: #25D366;
}

.contact-card.featured-contact:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-green);
}

.contact-card-icon.whatsapp-icon {
    color: #25D366;
}

.contact-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-detail {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-link {
    color: var(--accent-gold);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366 !important;
}

.whatsapp-link:hover {
    color: #128C7E !important;
}

.contact-time {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 5px 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: var(--off-white);
}

.contact-form-wrapper-full {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* =================
   IMAGE SLIDER
   ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin-bottom: 60px;
    box-shadow: var(--shadow-colored);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(22, 163, 74, 0.7) 0%, 
        rgba(34, 197, 94, 0.5) 50%,
        rgba(20, 184, 166, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 50px;
    /* Enhanced shadow at bottom */
    box-shadow: inset 0 -150px 100px rgba(0, 0, 0, 0.5), inset 0 100px 100px rgba(0, 0, 0, 0.2);
}

/* Colorful gradient for each slide */
.slide:nth-child(1) .slide-overlay {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.8) 0%, 
        rgba(59, 130, 246, 0.6) 50%,
        rgba(139, 92, 246, 0.4) 100%);
}

.slide:nth-child(2) .slide-overlay {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(139, 92, 246, 0.6) 50%,
        rgba(236, 72, 153, 0.4) 100%);
}

.slide:nth-child(3) .slide-overlay {
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.8) 0%, 
        rgba(245, 158, 11, 0.6) 50%,
        rgba(236, 72, 153, 0.4) 100%);
}

.slide:nth-child(4) .slide-overlay {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.8) 0%, 
        rgba(168, 85, 247, 0.6) 50%,
        rgba(59, 130, 246, 0.4) 100%);
}

.slide:nth-child(5) .slide-overlay {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.8) 0%, 
        rgba(20, 184, 166, 0.6) 50%,
        rgba(34, 197, 94, 0.4) 100%);
}

.slide-content {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.6s ease-out;
}

.slide-content h3 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 10px rgba(255, 255, 255, 0.2);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.slide-content p {
    color: rgba(255,255,255,0.98);
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 0 8px rgba(255, 255, 255, 0.15);
    font-weight: 500;
    line-height: 1.5;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35), 0 0 20px rgba(22, 163, 74, 0.3);
}

.slider-btn.prev {
    left: 25px;
}

.slider-btn.next {
    right: 25px;
}

.slider-btn svg {
    width: 26px;
    height: 26px;
    color: var(--primary-green);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider-dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.1);
}

.slider-dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255,255,255,0.5), 0 0 10px rgba(22, 163, 74, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* =================
   IMAGE MODAL
   ================= */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--accent-gold);
}

/* Product submenu dropdown */
.nav-menu > li {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav-menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    transition: var(--transition-fast);
}

.submenu a:hover {
    background: rgba(45, 80, 22, 0.05);
    color: var(--primary-green);
    padding-left: 25px;
}

.menu-arrow {
    margin-left: 5px;
    font-size: 0.7rem;
}

/* =================
   FLOATING BUTTONS
   ================= */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.scroll-top-btn,
.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
    border: none;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.scroll-top-btn.visible,
.whatsapp-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top-btn {
    background: var(--gradient-primary);
    color: var(--white);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

.scroll-top-btn svg,
.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Tooltip */
.scroll-top-btn::before,
.whatsapp-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.scroll-top-btn:hover::before,
.whatsapp-btn:hover::before {
    opacity: 1;
}

.scroll-top-btn::after,
.whatsapp-btn::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: var(--dark);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.scroll-top-btn:hover::after,
.whatsapp-btn:hover::after {
    opacity: 1;
}

/* =================
   RESPONSIVE DESIGN
   ================= */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mission-grid,
    .story-grid,
    .vm-grid,
    .contact-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-stats {
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        right: 20px;
        bottom: 20px;
    }

    .scroll-top-btn,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .scroll-top-btn svg,
    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Hide tooltips on mobile */
    .scroll-top-btn::before,
    .whatsapp-btn::before,
    .scroll-top-btn::after,
    .whatsapp-btn::after {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid,
    .products-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-visual {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .hero-slider {
        height: 450px;
        max-height: 50vh;
        border-radius: 0 0 20px 20px;
        margin-bottom: 40px;
    }

    .slide-overlay {
        padding: 30px;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(45, 80, 22, 0.05);
        margin-top: 10px;
        border-radius: 8px;
    }
}

/* =================
   ANIMATIONS
   ================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =================
   PRODUCTS GRID PAGE
   ================= */
.products-grid-section {
    padding: 60px 20px;
    background: var(--off-white);
}

.product-category-section {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all var(--transition-normal);
    position: relative;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category-badge.fungicide {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.product-category-badge.herbicide {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.product-category-badge.nutrient {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-item:hover .product-image-container img {
    transform: scale(1.08);
}

.product-image-clickable {
    cursor: pointer;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: var(--primary-green);
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-packing {
    background: var(--off-white);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-gold);
}

.packing-label {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 8px;
}

.packing-options {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.view-details-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #3d6b28 0%, #2d5016 100%);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.view-details-btn svg {
    transition: transform var(--transition-fast);
}

.view-details-btn:hover svg {
    transform: translateX(4px);
}

/* =================
   CONTACT PAGE SECTIONS
   ================= */
.map-section-top {
    padding: 80px 20px;
    background: var(--off-white);
}

.map-section-top h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.map-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info-section {
    padding: 80px 20px;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
    background: var(--white);
}

.contact-card.featured-contact {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-color: #25D366;
}

.contact-card.featured-contact:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-green);
}

.contact-card-icon.whatsapp-icon {
    color: #25D366;
}

.contact-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-detail {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-link {
    color: var(--accent-gold);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366 !important;
}

.whatsapp-link:hover {
    color: #128C7E !important;
}

.contact-time {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 5px 0;
}

.contact-form-section {
    padding: 80px 20px;
    background: var(--off-white);
}

.contact-form-wrapper-full {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
/* =================
   CAREERS PAGE
   ================= */
.career-header {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
}

.header-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

/* Why Join Us Section */
.why-join-section {
    padding: 80px 20px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
    padding: 80px 20px;
    background: var(--off-white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.job-icon svg {
    width: 30px;
    height: 30px;
}

.job-card h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.job-dept {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.job-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.9rem;
}

.job-detail-item svg {
    color: var(--primary-green);
}

.apply-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.apply-btn:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-colored);
}

.apply-btn svg {
    transition: transform var(--transition-fast);
}

.apply-btn:hover svg {
    transform: translateX(4px);
}

/* Application Modal */
.application-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.application-modal.active {
    display: flex;
}

.application-form-modal {
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.career-application-form .form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed var(--primary-green);
    background: var(--off-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.career-application-form .form-group input[type="file"]:hover {
    background: var(--white);
    border-color: var(--primary-green-light);
}
/* Logo Image Styles */
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* =================
   CEO MESSAGE SECTION
   ================= */
.ceo-message-section {
    padding: 100px 20px;
    background: var(--white);
}

.ceo-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.ceo-image-wrapper {
    position: sticky;
    top: 100px;
}

.ceo-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 25px;
}

.ceo-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.ceo-info {
    text-align: center;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.ceo-info h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.ceo-info p {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.ceo-message-content {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary-green);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary-green);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.message-text {
    position: relative;
    z-index: 2;
}

.lead-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.message-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.message-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

.closing-message {
    font-style: italic;
    font-weight: 600;
    color: var(--dark) !important;
    margin-top: 25px;
}

.ceo-signature {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--light-gray);
}

.signature-line {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.signature-title {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive CEO Section */
@media (max-width: 968px) {
    .ceo-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ceo-image-wrapper {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ceo-message-content {
        padding: 30px 25px;
    }
}

@media (max-width: 640px) {
    .ceo-message-section {
        padding: 60px 20px;
    }
    
    .quote-icon {
        font-size: 5rem;
    }
    
    .message-text p {
        font-size: 1rem;
    }
    
    .signature-line {
        font-size: 1.3rem;
    }
}
/* Page Header - Compact Version */
.page-header {
    position: relative;
    padding: 60px 20px 40px;
    background: var(--gradient-primary);
    margin-top: 70px;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

/* Career header specific */
.career-header {
    padding: 70px 20px 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 50px 20px 35px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
}
/* =================
   FULL-PAGE IMAGE MODAL
   ================= */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

.image-modal .modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

.image-modal img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.modal-close:hover {
    background: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-modal .modal-content {
        max-width: 100vw;
        max-height: 100vh;
        padding: 10px;
    }
    
    .image-modal img {
        max-height: 90vh;
        border-radius: 5px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
/* =================
   HOME PAGE HERO - COMPACT VERSION
   ================= */
.hero {
    position: relative;
    min-height: 500px;
    padding: 100px 20px 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: rgba(255,255,255,0.5);
    margin: 8px auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Hero */
@media (max-width: 968px) {
    .hero {
        min-height: 450px;
        padding: 80px 20px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 400px;
        padding: 70px 20px 40px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 25px;
    }
}
/* =================
   CEO SLIDER SLIDE - SPECIAL STYLING
   ================= */
.ceo-slide-content {
    max-width: 700px;
}

.ceo-slide-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.3);
    animation: slideUp 0.6s ease-out 0.1s both;
}

.ceo-slide-content h3 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    font-weight: 800;
    line-height: 1.2;
}

.ceo-slide-content p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.ceo-slide-signature {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin-top: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* CEO slide specific overlay adjustment - colorful gradient */
.slide:first-child .slide-overlay {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.8) 0%, 
        rgba(59, 130, 246, 0.6) 50%,
        rgba(139, 92, 246, 0.4) 100%);
    box-shadow: inset 0 -150px 100px rgba(0, 0, 0, 0.5), inset 0 100px 100px rgba(0, 0, 0, 0.2);
}

/* =================
   FOOTER SOCIAL MEDIA ICONS
   ================= */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    transition: var(--transition-fast);
}

/* Facebook */
.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* WhatsApp */
.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Instagram */
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-color: #DD2A7B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(221, 42, 123, 0.4);
}

/* LinkedIn */
.social-icon.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

/* Footer logo image styling */
.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive social icons */
@media (max-width: 640px) {
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
/* =================
   PROFESSIONAL SLIDER ENHANCEMENTS
   ================= */

/* Improved slider container */
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Smooth slide transitions */
.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 100%;
}

/* Professional slide styling */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Image with ken burns effect */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 15s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Professional gradient overlays */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 60px;
    z-index: 2;
}

/* Animated slide content */
.slide-content {
    max-width: 800px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional typography */
.slide-content h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.5;
}

/* Modern navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.slider-btn:hover svg {
    stroke: var(--primary-green);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Modern dot indicators */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--white);
    border-color: var(--white);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

/* Progress bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    z-index: 11;
    animation: slideProgress 5s linear;
}

@keyframes slideProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slider {
        height: 450px;
        border-radius: 15px;
    }
    
    .slide-overlay {
        padding: 30px 20px;
    }
    
    .slide-content h3 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}
/* =================
   PREMIUM STYLISH SLIDER
   ================= */

/* Elegant slider container */
.slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 0;
    margin-top: 70px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.2);
}

/* Decorative corner accents */
.slider::before,
.slider::after {
    content: '';
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.slider::before {
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.3) 0%, transparent 70%);
}

.slider::after {
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(-45deg, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

/* Elegant slide wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Beautiful slide transitions */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Premium image effects */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    filter: brightness(0.9) contrast(1.1);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active img {
    transform: scale(1.12);
    filter: brightness(1) contrast(1.05);
}

/* Elegant gradient overlays */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px;
    z-index: 3;
}

/* Animated glow effect */
.slide-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(22, 163, 74, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Elegant content animation */
.slide-content {
    max-width: 1000px;
    position: relative;
    z-index: 4;
    transform: translateY(60px) scale(0.95);
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .slide-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.4s;
}

/* Beautiful typography with glow */
.slide-content h3 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 
        0 0 30px rgba(22, 163, 74, 0.5),
        0 10px 40px rgba(0,0,0,0.6),
        0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 
        0 2px 20px rgba(0,0,0,0.5),
        0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Decorative line accent */
.slide-content::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    margin: 30px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.6);
}

/* Premium CEO slide styling */
.ceo-slide-content::after {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.ceo-slide-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ceo-slide-signature {
    margin-top: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Luxury navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.9), rgba(16, 185, 129, 0.9));
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255,255,255,0.4);
    color: var(--white);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(22, 163, 74, 0.4);
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,1));
    transform: translateY(-50%) scale(1.2) rotate(90deg);
    box-shadow: 
        0 20px 60px rgba(22, 163, 74, 0.6),
        0 0 40px rgba(255,255,255,0.5);
    border-color: var(--primary-green);
}

.slider-btn:hover svg {
    stroke: var(--primary-green);
}

.slider-btn svg {
    width: 35px;
    height: 35px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.slider-btn.prev {
    left: 50px;
}

.slider-btn.next {
    right: 50px;
}

/* Elegant dot indicators */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 100;
    padding: 15px 25px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    border-color: var(--white);
    transform: scale(1.5);
    box-shadow: 
        0 0 30px rgba(22, 163, 74, 0.8),
        0 6px 20px rgba(0,0,0,0.4);
}

.dot.active::before {
    border-color: rgba(255,255,255,0.5);
    inset: -8px;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

/* Slide number counter */
.slide-counter {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 100;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.slide-counter .current {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Responsive premium */
@media (max-width: 968px) {
    .slider {
        height: 550px;
    }
    
    .slide-overlay {
        padding: 60px 40px;
    }
    
    .slide-content h3 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        width: 65px;
        height: 65px;
    }
    
    .slider-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .slider-btn.prev { left: 30px; }
    .slider-btn.next { right: 30px; }
}

@media (max-width: 640px) {
    .slider {
        height: 500px;
    }
    
    .slide-overlay {
        padding: 40px 25px;
    }
    
    .slide-content h3 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .slider-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .slider-btn.prev { left: 15px; }
    .slider-btn.next { right: 15px; }
    
    .slider-dots {
        bottom: 30px;
        padding: 12px 20px;
        gap: 14px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .slide-counter {
        top: 25px;
        right: 25px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .slide-counter .current {
        font-size: 1.5rem;
    }
}
/* =================
   SPLIT-SCREEN SLIDER WITH PRODUCTS
   ================= */

/* Split screen layout */
.slide-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    align-items: center;
    width: 100%;
}

/* Left side - Text content */
.slide-text {
    text-align: left;
    animation: slideInLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .slide-text {
    animation: slideInLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Elegant badge */
.slide-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: var(--white);
}

.slide-text h3 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 
        0 0 40px rgba(22, 163, 74, 0.6),
        0 10px 50px rgba(0,0,0,0.7);
    line-height: 1;
    letter-spacing: -2px;
}

.slide-text p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Premium CTA Button */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 
        0 15px 40px rgba(22, 163, 74, 0.5),
        0 0 60px rgba(22, 163, 74, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.slide-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(22, 163, 74, 0.7),
        0 0 80px rgba(22, 163, 74, 0.5);
}

.slide-cta:hover::before {
    opacity: 0.2;
}

.slide-cta svg {
    transition: transform 0.3s ease;
}

.slide-cta:hover svg {
    transform: translateX(5px);
}

/* Right side - Product showcase */
.slide-product {
    position: relative;
    animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .slide-product {
    animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Product showcase container */
.product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.product-showcase img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 
        0 30px 90px rgba(0,0,0,0.6),
        0 0 100px rgba(22, 163, 74, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s ease;
    border: 4px solid rgba(255,255,255,0.3);
}

.product-showcase:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 
        0 40px 120px rgba(0,0,0,0.7),
        0 0 150px rgba(22, 163, 74, 0.6);
}

/* Glowing effect behind product */
.product-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(ellipse at center, rgba(22, 163, 74, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Decorative rings around product */
.product-showcase::before,
.product-showcase::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(22, 163, 74, 0.3);
    animation: ripple 4s ease-out infinite;
}

.product-showcase::before {
    inset: -30px;
    animation-delay: 0s;
}

.product-showcase::after {
    inset: -50px;
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Responsive split screen */
@media (max-width: 968px) {
    .slide-content-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .slide-text {
        text-align: center;
    }
    
    .slide-text h3 {
        font-size: 3rem;
    }
    
    .product-showcase {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .slide-content-split {
        gap: 30px;
    }
    
    .slide-text h3 {
        font-size: 2.2rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
    
    .slide-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .product-showcase {
        max-width: 300px;
    }
}
/* =================
   COLORFUL CTA SECTIONS
   ================= */

/* Beautiful gradient CTA section */
.cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, 
        #16a34a 0%,      /* Green */
        #3b82f6 50%,     /* Blue */
        #8b5cf6 100%     /* Purple */
    );
    overflow: hidden;
}

/* Animated background pattern */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: bgMove 15s ease-in-out infinite;
}

@keyframes bgMove {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(20px) scale(1.1); }
}

/* Content container */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

/* Black text for readability */
.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #16a34a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: #2d2d2d;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

/* Button container */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium buttons */
.cta-buttons .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.cta-buttons .btn-light {
    background: linear-gradient(135deg, #16a34a, #10b981);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-light:hover {
    background: linear-gradient(135deg, #10b981, #16a34a);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(22, 163, 74, 0.5),
        0 0 60px rgba(22, 163, 74, 0.4);
}

.cta-buttons .btn-outline {
    background: white;
    color: #16a34a;
    border-color: #16a34a;
}

.cta-buttons .btn-outline:hover {
    background: linear-gradient(135deg, #16a34a, #10b981);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.5);
}

/* Decorative elements */
.cta-content::before,
.cta-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
}

.cta-content::before {
    top: -50px;
    left: -50px;
    background: rgba(22, 163, 74, 0.4);
}

.cta-content::after {
    bottom: -50px;
    right: -50px;
    background: rgba(59, 130, 246, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* =================
   SLIDER HEIGHT INCREASE
   ================= */

.slider {
    position: relative;
    width: 100%;
    height: 800px; /* Increased from 700px */
    overflow: hidden;
    border-radius: 0;
    margin-top: 70px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.2);
}

/* Mobile responsive */
@media (max-width: 968px) {
    .slider {
        height: 600px; /* Increased from 550px */
    }
}

@media (max-width: 640px) {
    .slider {
        height: 550px; /* Increased from 500px */
    }
}

/* =================
   HERO SECTION - SMALLER
   ================= */

.hero {
    min-height: 400px; /* Reduced from 600px */
    padding: 40px 20px; /* Reduced from 80px */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 2.5rem; /* Reduced from 3.5rem */
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px; /* Reduced from 30px */
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem; /* Reduced from 1.5rem */
    color: rgba(255,255,255,0.95);
    margin-bottom: 25px; /* Reduced from 40px */
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Mobile hero */
@media (max-width: 768px) {
    .hero {
        min-height: 350px;
        padding: 30px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 300px;
        padding: 25px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
/* =================
   CLEAR SLIDER - NO GRADIENT
   ================= */

/* Remove dark gradient overlay - clear images */
.slide-overlay {
    position: absolute;
    inset: 0;
    /* NO dark gradient - just light shadow for text readability */
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 60px 100px;
    z-index: 2;
}

/* Clear text with stronger shadows for visibility */
.slide-content {
    max-width: 1000px;
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.3);
}

.slide-content h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 
        0 4px 20px rgba(0,0,0,0.9),
        0 2px 10px rgba(0,0,0,0.8);
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.98);
    text-shadow: 
        0 3px 15px rgba(0,0,0,0.8),
        0 2px 8px rgba(0,0,0,0.6);
    line-height: 1.6;
    font-weight: 400;
}

/* Mobile adjustments */
@media (max-width: 968px) {
    .slide-overlay {
        padding: 40px 30px;
    }
    
    .slide-content {
        padding: 25px 30px;
    }
    
    .slide-content h3 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .slide-overlay {
        padding: 30px 20px;
    }
    
    .slide-content {
        padding: 20px 25px;
        border-radius: 15px;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}
/* =================
   CEO HERO SECTION
   ================= */

.ceo-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 90px auto 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.ceo-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.ceo-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.ceo-hero-image:hover img {
    transform: scale(1.05);
}

.ceo-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.ceo-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.ceo-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-message {
    margin-bottom: 40px;
}

.ceo-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--primary-green);
}

.ceo-signature {
    margin-top: 30px;
}

.signature-line {
    width: 335px;
    height: 40px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    margin-bottom: 15px;
}

.ceo-signature p {
    margin: 5px 0;
    color: var(--primary);
}

.ceo-signature strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.ceo-title {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.8;
    font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
    .ceo-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px 20px;
        padding: 40px 30px;
    }
    
    .ceo-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ceo-quote {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .ceo-hero {
        margin: 40px 15px;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .ceo-hero-content {
        padding: 0;
    }
    
    .ceo-hero-content h1 {
        font-size: 2rem;
    }
    
    .ceo-quote {
        font-size: 1.05rem;
        padding-left: 20px;
    }
    
    .ceo-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
}
