/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from logo - greens and yellow-orange */
    --primary-green: #2d7a3e;
    --secondary-green: #6fb33f;
    --light-green: #9dc944;
    --yellow-orange: #f7a416;
    --dark-orange: #e67e22;
    --dark-bg: #1a3a1f;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d7a3e 0%, #6fb33f 50%, #9dc944 100%);
    --gradient-secondary: linear-gradient(135deg, #f7a416 0%, #e67e22 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 122, 62, 0.9) 0%, rgba(111, 179, 63, 0.8) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .logo img {
    height: 50px;
    width: auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #2d7a3e, #6fb33f);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,122,62,0.3);
}

/* ===== HERO ===== */
.legal-hero {
    background: linear-gradient(135deg, #2d7a3e 0%, #6fb33f 100%);
    padding: 120px 24px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.legal-hero h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.legal-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

/* ===== MAIN CONTAINER ===== */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 24px 80px;
}

/* ===== INTRO BOX ===== */
.intro-box {
    background: white;
    border-left: 5px solid var(--primary-green);
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.intro-box p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 0;
}

.intro-box p + p {
    margin-top: 14px;
}

.intro-box a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.intro-box a:hover {
    border-color: var(--primary-green);
}

/* ===== LEGAL SECTION ===== */
.legal-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.legal-section:hover {
    box-shadow: var(--shadow-hover);
}

.legal-section h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2d7a3e, #6fb33f);
    color: white;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Source Sans 3', sans-serif;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin: 20px 0 10px;
}

.legal-section p {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul, .legal-section ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal-section li {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 8px;
}

.legal-section li:last-child { margin-bottom: 0; }

.legal-section a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-section a:hover {
    border-color: var(--primary-green);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, #f0f9f2, #e8f5e9);
    border: 1px solid #a5d6a7;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 10px;
}

.highlight-box p {
    font-size: 15px;
    line-height: 1.85;
    color: #2e4d30;
    margin: 0;
}

/* ===== WARNING BOX ===== */
.warning-box {
    background: #fff8f0;
    border: 1px solid #ffcc80;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 20px;
}

.warning-box h3 {
    font-size: 17px;
    font-weight: 700;
    color: #e65100;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box ul {
    padding-left: 20px;
    margin: 0;
}

.warning-box li {
    font-size: 15px;
    color: #5d4037;
    margin-bottom: 7px;
    line-height: 1.75;
}

/* ===== STEPS LIST ===== */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.steps-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #2d7a3e, #6fb33f);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-top: 2px;
}

.steps-list li div {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-body);
}

/* ===== TIMELINE GRID (Shipping) ===== */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0 24px;
}

.timeline-card {
    background: linear-gradient(135deg, #f0f9f2, #e8f5e9);
    border: 1px solid #c8e6c9;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
}

.timeline-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2d7a3e, #6fb33f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin: 0 auto 14px;
}

.timeline-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.timeline-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.timeline-card p:last-child {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2d7a3e, #6fb33f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item div {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-body);
}

.contact-item a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.legal-footer {
    background: #1a3a1f;
    color: rgba(255,255,255,0.75);
    padding: 40px 24px;
}

.legal-footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.legal-footer-inner p {
    font-size: 14px;
    margin-bottom: 16px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
    margin-bottom: 16px;
}

.legal-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.legal-links a:hover { color: #9dc944; }

.dev-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 20px 50px;
    }

    .legal-container {
        padding: 36px 16px 60px;
    }

    .legal-section {
        padding: 28px 22px;
    }

    .intro-box {
        padding: 22px 24px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .back-btn span { display: none; }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== NAVIGATION ===== */
.navbar {
    position: fixed ;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo img {
    width: 150px;
    height: auto;
}


.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
          rgba(27, 94, 32, 0.7),
          rgba(27, 94, 32, 0.7)
        ),
        url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6")
          center/cover fixed;
    display: flex;
    background-size: cover;
    background-position: center;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(247, 164, 22, 0.2) 0%, transparent 50%);
    z-index: 2;
    
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--white);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: backwards;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(247, 164, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 164, 22, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.leaf1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.seed1 {
    top: 40%;
    left: 20%;
    animation-delay: 1s;
}

.seed2 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* ===== HERO DESCRIPTION BAND ===== */
        .hero-desc-band {
            background: linear-gradient(135deg, #2d7a3e 0%, #1a3a1f 100%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-desc-band::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 80% 50%, rgba(247,164,22,0.1) 0%, transparent 60%);
        }

        .hero-desc-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .hero-desc-item {
            color: white;
        }

        .hero-desc-item i {
            font-size: 32px;
            color: #f7a416;
            margin-bottom: 12px;
            display: block;
        }

        .hero-desc-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .hero-desc-item p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.6;
        }

.about {
            background: #fff;
            padding: 100px 0;
        }

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

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(45,122,62,0.1), rgba(111,179,63,0.1));
            border: 1px solid rgba(45,122,62,0.2);
            color: #2d7a3e;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .about-text h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: #2c3e50;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .about-text h2 span {
            background: linear-gradient(135deg, #2d7a3e, #9dc944);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            color: #5a6a5c;
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 28px;
        }

        .about-highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: #f8fdf9;
            border-radius: 12px;
            border: 1px solid #d8eada;
        }

        .about-highlight-item i {
            color: #2d7a3e;
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .about-highlight-item div strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 3px;
        }

        .about-highlight-item div span {
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.5;
        }

        .about-image-wrap {
            position: relative;
        }

        .about-image-wrap .about-img-main {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(45,122,62,0.2);
        }

        .about-float-card {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: white;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 220px;
        }

        .about-float-card .float-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #2d7a3e, #6fb33f);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }

        .about-float-card .float-text strong {
            display: block;
            font-size: 22px;
            font-weight: 800;
            color: #2d7a3e;
            line-height: 1;
        }

        .about-float-card .float-text span {
            font-size: 13px;
            color: #7f8c8d;
        }

        .about-float-card-2 {
            position: absolute;
            top: 30px;
            right: -20px;
            background: linear-gradient(135deg, #f7a416, #e67e22);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(247,164,22,0.3);
            color: white;
            text-align: center;
        }

        .about-float-card-2 strong {
            display: block;
            font-size: 26px;
            font-weight: 800;
            line-height: 1;
        }

        .about-float-card-2 span {
            font-size: 12px;
            opacity: 0.9;
        }


/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--white);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-hover-effect {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-overlay);
    transition: bottom var(--transition-medium);
    opacity: 0;
}

.service-card:hover .service-hover-effect {
    bottom: 0;
    opacity: 0.05;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 250px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.product-content {
    padding: 20px;
    text-align: center;
}

.product-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-medium);
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotate(10deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.product-btn {
    padding: 12px 30px;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-btn:hover {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.product-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-footer i {
    color: var(--primary-green);
    transition: transform var(--transition-fast);
}

.product-card:hover .product-footer i {
    transform: translateX(5px);
}

/* ===== STATS SECTION ===== */
.stats {
    position: relative;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: all var(--transition-fast);
    
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    
    
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 18px;
    color: var(--text-light);
}

.form-group textarea + i {
    top: 20px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}
/* ===== UPDATED FOOTER ===== */
        .footer-updated {
            background: #1a3a1f;
            color: white;
            padding: 70px 0 30px;
        }

        .footer-updated-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #9dc944;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(157,201,68,0.3);
        }

        .footer-col-brand .footer-logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }

        .footer-col-brand .footer-logo-wrap i {
            font-size: 28px;
            color: #9dc944;
        }

        .footer-col-brand .footer-logo-wrap span {
            font-size: 18px;
            font-weight: 800;
            color: white;
            letter-spacing: 0.5px;
        }

        .footer-col-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255,255,255,0.65);
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, #f7a416, #e67e22);
            transform: translateY(-4px);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .footer-col ul li a i {
            font-size: 11px;
            color: #9dc944;
        }

        .footer-col ul li a:hover {
            color: white;
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 14px;
        }

        .footer-contact-item i {
            color: #9dc944;
            font-size: 15px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-contact-item p {
            font-size: 13.5px;
            color: rgba(255,255,255,0.65);
            line-height: 1.65;
            margin: 0;
        }

        .footer-contact-item a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-contact-item a:hover { color: white; }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 28px;
        }

        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom-row p {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
        }

        .footer-legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 20px;
        }

        .footer-legal-links a {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-legal-links a:hover { color: #9dc944; }

         /* ===== RESPONSIVE ===== */
        @media (max-width: 968px) {
            .about-inner { grid-template-columns: 1fr; }
            .about-image-wrap { display: none; }
            .about-highlights { grid-template-columns: 1fr; }
            .footer-updated-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom-row { flex-direction: column; text-align: center; }
        }

        @media (max-width: 600px) {
            .footer-updated-grid { grid-template-columns: 1fr; gap: 32px; }
            .hero-desc-grid { grid-template-columns: 1fr 1fr; }
            .about-float-card, .about-float-card-2 { display: none; }
        }

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-fast);
        box-shadow: var(--shadow-md);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Smooth Scroll Effect */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}