        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #2d5016;
            --secondary-color: #43a047;
            --accent-color: #66bb6a;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --hero-bg: #e8f5e9;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .brand-name {
            font-family: 'Arizonia', cursive;
            font-weight: 400;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            left: -100px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            border-radius: 25px;
            padding: 1rem 0.75rem;
            transition: all 0.4s ease;
        }
        
        .navbar:hover {
            left: 2rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .nav-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }
        
        .top-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to bottom, #f1f8e9, #ffffff);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .top-nav-center {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex: 1;
            justify-content: center;
        }
        
        .top-nav-center a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .top-nav-center a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .top-nav-center a:hover {
            color: var(--secondary-color);
        }
        
        .top-nav-center a:hover::after {
            width: 100%;
        }
        
        .top-nav-center a.active {
            color: var(--secondary-color);
        }
        
        .top-nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .logo i {
            font-size: 2rem;
            color: var(--secondary-color);
        }
        
        .nav-menu {
            display: flex;
            flex-direction: column;
            list-style: none;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
        }
        
        .nav-menu li {
            width: 100%;
            list-style: none;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            font-size: 1.2rem;
        }
        
        .nav-menu a:hover {
            background: var(--secondary-color);
            color: var(--white);
            transform: translateX(5px);
        }
        
        .nav-menu a.active {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .nav-menu span.nav-text {
            display: none;
        }
        
        .nav-item-tooltip {
            position: absolute;
            left: 60px;
            background: var(--primary-color);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, left 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .nav-item-tooltip::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-right: 5px solid var(--primary-color);
        }
        
        .nav-menu a:hover .nav-item-tooltip {
            opacity: 1;
            left: 65px;
        }
        
        /* Mobile Menu */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            right: -100%;
            top: 0;
            bottom: 0;
            flex-direction: column;
            background: var(--white);
            width: 280px;
            padding: 5rem 1.5rem 2rem;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            gap: 0;
            list-style: none;
            z-index: 1000;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu li {
            list-style: none;
            margin-bottom: 0.5rem;
        }
        
        .mobile-menu a {
            width: 100%;
            height: auto;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            justify-content: flex-start;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--secondary-color);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu a:hover::before,
        .mobile-menu a.active::before {
            transform: scaleY(1);
        }
        
        .mobile-menu a:hover {
            background: rgba(67, 160, 71, 0.1);
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .mobile-menu a.active {
            background: rgba(45, 80, 22, 0.1);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .mobile-menu a i {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .mobile-menu-header {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--bg-light);
        }
        
        .mobile-menu-header .brand-name {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .mobile-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-close:hover {
            background: rgba(45, 80, 22, 0.1);
            color: var(--primary-color);
            transform: rotate(90deg);
        }
        
        .mobile-menu-header {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--bg-light);
        }
        
        .mobile-menu-header .brand-name {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .mobile-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-close:hover {
            background: rgba(45, 80, 22, 0.1);
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        
        .phone-btn {
            background: var(--secondary-color);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .phone-btn:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .phone-btn i {
            font-size: 1.1rem;
        }
        
        /* Burger Menu Button */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            background: rgba(67, 160, 71, 0.1);
            transition: all 0.3s ease;
        }
        
        .burger:hover {
            background: rgba(67, 160, 71, 0.2);
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 50%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 2rem 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 235, 59, 0.15), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(102, 187, 106, 0.08), transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .hero-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 5rem;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            animation: fadeInUp 1s ease;
            position: relative;
        }
        
        .hero-tagline {
            color: var(--secondary-color);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hero-tagline::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .hero h1 {
            font-size: 3.75rem;
            font-weight: 800;
            margin-bottom: 1.75rem;
            color: var(--primary-color);
            line-height: 1.15;
            letter-spacing: -1px;
        }
        
        .hero p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
            color: #4a4a4a;
            line-height: 1.8;
            max-width: 580px;
        }
        
        .hero-image {
            position: relative;
            animation: fadeInUp 1s ease 0.3s backwards;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(67, 160, 71, 0.2), rgba(45, 80, 22, 0.2));
            border-radius: 24px;
            z-index: -1;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            object-fit: cover;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .hero-image:hover img {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.25rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1.125rem 2.75rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn i {
            font-size: 1.1rem;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color), #66bb6a);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-color), #2d5016);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }
        
        .btn-secondary:hover {
            background: var(--secondary-color);
            color: var(--white);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(67, 160, 71, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: var(--white);
            scroll-margin-top: 80px;
        }
        
        .story-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 5rem;
        }
        
        .story-content h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }
        
        .story-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .story-image-wrapper {
            position: relative;
        }
        
        .experience-badge {
            position: absolute;
            top: -20px;
            left: -20px;
            background: var(--white);
            padding: 1.5rem 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 2;
        }
        
        .experience-badge i {
            width: 50px;
            height: 50px;
            background: rgba(67, 160, 71, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            font-size: 1.5rem;
        }
        
        .badge-text {
            display: flex;
            flex-direction: column;
        }
        
        .badge-text span {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .badge-text strong {
            color: var(--text-dark);
            font-size: 1.8rem;
            font-weight: 800;
        }
        
        .story-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .story-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-color);
            color: var(--white);
            padding: 1.5rem;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .vision-mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .vm-card {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .vm-card:not(.vm-image-card) {
            padding: 3rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .vm-icon {
            width: 60px;
            height: 60px;
            background: rgba(67, 160, 71, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .vm-icon i {
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        
        .vm-content h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .vm-content p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        .vm-image-card {
            padding: 0;
            min-height: 300px;
        }
        
        .vm-image-card img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        /* Products Section */
        .products {
            padding: 5rem 2rem;
            background: var(--bg-light);
        }
        
        .products-carousel-wrapper {
            margin-top: 3rem;
        }
        
        .products-carousel {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .product-icon {
            height: 180px;
            background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(67, 160, 71, 0.1) 0%, transparent 70%);
            transition: transform 0.6s ease;
        }
        
        .product-card:hover .product-icon::before {
            transform: scale(1.2);
        }
        
        .product-icon i {
            font-size: 4rem;
            color: var(--primary-color);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .product-card:hover .product-icon {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }
        
        .product-card:hover .product-icon i {
            color: var(--white);
            transform: scale(1.2) rotate(5deg);
        }
        
        /* Legacy image styles - keeping for backwards compatibility */
        .product-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(67, 160, 71, 0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .product-overlay i {
            font-size: 3rem;
            color: var(--white);
            transform: scale(0.8);
            transition: transform 0.4s ease;
        }
        
        .product-card:hover .product-overlay i {
            transform: scale(1);
        }
        
        .product-content {
            padding: 1.25rem;
        }
        
        .product-content h3 {
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .product-content p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.9rem;
        }
        
        /* Partners Section */
        .partners {
            padding: 4rem 2rem;
            background: var(--white);
            overflow: hidden;
        }
        
        .partners-track {
            display: flex;
            gap: 4rem;
            margin-top: 3rem;
            animation: scroll-partners 30s linear infinite;
        }
        
        .partners-slide {
            display: flex;
            gap: 4rem;
            align-items: center;
            flex-shrink: 0;
        }
        
        .partner-logo {
            min-width: 180px;
            height: 100px;
            background: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-light);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            flex-shrink: 0;
            padding: 1rem;
            text-decoration: none;
            cursor: pointer;
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
            pointer-events: none;
        }
        
        .partner-logo:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }
        
        .partner-logo:hover img {
            filter: grayscale(0%);
        }
        
        @keyframes scroll-partners {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% - 4rem));
            }
        }
        
        .partners-track:hover {
            animation-play-state: paused;
        }
        

        
        .product-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--secondary-color);
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .product-btn:hover {
            background: var(--secondary-color);
            color: var(--white);
            transform: translateX(5px);
        }
        
        .product-btn i {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .product-btn:hover i {
            transform: translateX(3px);
        }
        
        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--bg-light);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-5px);
        }
        
        .service-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover i {
            color: var(--white);
        }
        
        .service-card h3 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: var(--white);
        }
        
        .service-card p {
            color: var(--text-light);
            transition: all 0.3s ease;
            font-size: 0.85rem;
            line-height: 1.5;
        }
        
        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Team Section */
        .team {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 50%, #e8f5e9 100%);
            position: relative;
            overflow: hidden;
        }
        
        .team::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(67, 160, 71, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .team .container {
            position: relative;
            z-index: 1;
        }
        
        .team-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 3rem 0 4rem;
        }
        
        .team-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(67, 160, 71, 0.3);
        }
        
        .team-badge i {
            font-size: 1.2rem;
        }
        
        .team-hero-content h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .team-lead {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            line-height: 1.8;
        }
        
        .team-hero-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .team-hero-image {
            position: relative;
        }
        
        .team-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .team-image-wrapper:hover {
            transform: translateY(-10px);
        }
        
        .team-image-wrapper img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }
        
        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
            padding: 2rem;
            display: flex;
            justify-content: space-around;
            gap: 2rem;
        }
        
        .team-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .team-stat i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }
        
        .team-stat strong {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            line-height: 1;
            margin-bottom: 0.25rem;
        }
        
        .team-stat span {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .team-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .team-feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .team-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--secondary-color);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }
        
        .team-feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .team-feature-card:hover .feature-icon i {
            color: var(--white);
        }
        
        .team-feature-card h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .team-feature-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            margin: 0;
        }
        
        .team-cta {
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(67, 160, 71, 0.1), rgba(45, 80, 22, 0.1));
            border-radius: 20px;
            margin-top: 2rem;
        }
        
        .team-cta p {
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        /* Locations Grid */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
            margin-bottom: 3rem;
        }
        
        .location-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .location-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .location-card h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        
        .location-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .direction-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .direction-btn:hover {
            background: var(--primary-color);
            transform: scale(1.05);
        }
        
        .direction-btn i {
            font-size: 1rem;
            margin: 0;
        }
        
        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(90, 140, 46, 0.05));
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 2rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            color: var(--white);
            font-size: 1.3rem;
        }
        
        .contact-text h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .contact-text p {
            color: var(--text-light);
        }
        
        .contact-text a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--primary-color);
        }
        
        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .form-success-message,
        .form-error-message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: none;
            animation: slideDown 0.3s ease;
        }
        
        .form-success-message {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-error-message {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .form-success-message.show,
        .form-error-message.show {
            display: block;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .form-group label .required {
            color: #dc3545;
            margin-left: 2px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.1);
        }
        
        .form-group input.valid,
        .form-group select.valid,
        .form-group textarea.valid {
            border-color: #28a745;
        }
        
        .form-group input.invalid,
        .form-group select.invalid,
        .form-group textarea.invalid {
            border-color: #dc3545;
        }
        
        .form-group .validation-icon {
            position: absolute;
            right: 12px;
            top: 42px;
            font-size: 1.2rem;
            display: none;
        }
        
        .form-group .validation-icon.valid {
            color: #28a745;
            display: block;
        }
        
        .form-group .validation-icon.invalid {
            color: #dc3545;
            display: block;
        }
        
        .form-group .error-message {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            display: none;
        }
        
        .form-group .error-message.show {
            display: block;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .submit-btn:hover:not(:disabled) {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .submit-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.8s linear infinite;
        }
        
        .submit-btn.loading .spinner {
            display: block;
        }
        
        .submit-btn.loading .btn-text {
            display: none;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* WhatsApp Chat Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
        }
        
        .whatsapp-float i {
            margin: 0;
        }
        
        /* Footer */
        .footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 2rem 2rem 1rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--white);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Footer Contact Grid */
        .footer-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
            margin: 2rem 0;
        }
        
        .footer-contact-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            text-align: left;
        }
        
        .footer-contact-item i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .footer-contact-item strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }
        
        .footer-contact-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }
        
        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-contact-item a:hover {
            color: var(--secondary-color);
        }
        
        /* Compact Contact Form Wrapper */
        .contact-form-wrapper {
            max-width: 800px;
            margin: 4rem auto 0;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form-compact {
            max-width: 100%;
        }
        
        .contact-form-compact .form-group {
            margin-bottom: 1rem;
        }
        
        .contact-form-compact textarea {
            min-height: 100px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar {
                display: none;
            }
            
            .top-nav-center {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        /* Tablet Responsive (768px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .products-carousel {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero {
                padding: 130px 3rem 4rem;
            }
            
            .hero-container {
                gap: 4rem;
            }
            
            .hero h1 {
                font-size: 3.25rem;
            }
            
            .container {
                padding: 0 3rem;
            }
            
            .team-content {
                gap: 3rem;
            }
            
            .team-hero {
                gap: 3rem;
            }
            
            .team-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .footer-contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .story-section {
                gap: 3rem;
            }
            
            .vision-mission-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .top-nav {
                padding: 0.75rem 1rem;
            }
            
            .logo span {
                display: none;
            }
            
            .phone-btn span {
                display: none;
            }
            
            .phone-btn {
                padding: 0.75rem 1rem;
                min-width: 44px;
                min-height: 44px;
            }
            
            .burger {
                display: flex;
                min-width: 44px;
                min-height: 44px;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .hero {
                padding: 100px 1.25rem 2.5rem;
                min-height: auto;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .hero-content {
                order: 1;
                text-align: center;
            }
            
            .hero-tagline {
                justify-content: center;
            }
            
            .hero p {
                max-width: 100%;
            }
            
            .hero-image {
                order: 2;
            }
            
            .hero-image::before {
                top: -10px;
                right: -10px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.25;
                margin-bottom: 1rem;
            }
            
            .hero p {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .hero-tagline {
                font-size: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                padding: 1rem;
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
            }
            
            .story-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .story-content h2 {
                font-size: 1.8rem;
            }
            
            .experience-badge {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 1rem;
            }
            
            .story-image img {
                height: 300px;
            }
            
            .vision-mission-grid {
                grid-template-columns: 1fr;
            }
            
            .order-mobile {
                order: 3;
            }
            
            .products-carousel {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            
            .product-card {
                padding: 0;
            }
            
            .product-card h3 {
                font-size: 1rem;
            }
            
            .product-card p {
                font-size: 0.85rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .service-card {
                padding: 1.25rem 0.75rem;
            }
            
            .service-card h3 {
                font-size: 0.95rem;
            }
            
            .service-card p {
                font-size: 0.8rem;
            }
            
            .team-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .team-hero {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .team-hero-content {
                order: 2;
            }
            
            .team-hero-image {
                order: 1;
            }
            
            .team-hero-content h3 {
                font-size: 2rem;
            }
            
            .team-image-wrapper img {
                height: 350px;
            }
            
            .team-features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .team-cta {
                padding: 2rem 1.5rem;
            }
            
            .team-cta p {
                font-size: 1.1rem;
            }
            
            .team-feature-item {
                padding: 1rem;
            }
            
            .team-feature-item:hover {
                transform: translateX(5px);
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            
            .location-card {
                padding: 1.5rem;
            }
            
            .partner-logo {
                min-width: 120px;
                height: 70px;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .contact-form {
                padding: 1.5rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 26px;
            }
            
            .footer-contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .footer-contact-item {
                padding: 1rem;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 8px;
            }
            
            .contact-form-wrapper {
                padding: 1.5rem;
                margin-top: 3rem;
            }
            
            .team {
                padding: 4rem 1.5rem;
            }
            
            .team-feature-item i {
                font-size: 1.5rem;
            }
            
            .partners {
                padding: 4rem 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }
            
            .hero-tagline {
                font-size: 0.9rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .nav-container {
                padding: 1rem;
            }
            
            .contact-form {
                padding: 1.25rem;
            }
            
            .story-content h2 {
                font-size: 1.5rem;
            }
            
            .story-image img {
                height: 250px;
            }
            
            .vm-card:not(.vm-image-card) {
                padding: 1.5rem;
            }
            
            .products-carousel {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .btn {
                padding: 0.875rem;
                font-size: 0.95rem;
            }
            
            .whatsapp-float {
                width: 48px;
                height: 48px;
                bottom: 15px;
                right: 15px;
                font-size: 24px;
            }
            
            .footer-contact-grid {
                gap: 1rem;
            }
            
            .footer-contact-item {
                padding: 0.875rem;
            }
            
            .footer-contact-item i {
                font-size: 1.25rem;
            }
            
            .footer-contact-item strong {
                font-size: 1rem;
            }
            
            .footer-contact-item p {
                font-size: 0.85rem;
            }
            
            .footer-content {
                gap: 1.25rem;
            }
            
            .team-hero-content h3 {
                font-size: 1.6rem;
            }
            
            .team-lead {
                font-size: 1rem;
            }
            
            .team-image-wrapper img {
                height: 280px;
            }
            
            .team-stat strong {
                font-size: 2rem;
            }
            
            .team-stat span {
                font-size: 0.8rem;
            }
            
            .team-badge {
                font-size: 0.85rem;
                padding: 0.6rem 1.2rem;
            }
            
            .team-cta p {
                font-size: 1rem;
            }
            
            .partner-logo {
                min-width: 100px;
                height: 60px;
                padding: 0.75rem;
            }
            
            .contact-form-wrapper {
                padding: 1.25rem;
            }
            
            .contact-form-wrapper h3 {
                font-size: 1.25rem;
            }
        }
        
        /* Landscape Mobile Optimization */
        @media (max-width: 896px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 90px 2rem 2rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-image img {
                max-height: 300px;
                object-fit: cover;
            }
            
            .story-image img {
                height: 200px;
            }
            
            .team-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .team-hero {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .team-image-wrapper img {
                height: 300px;
            }
            
            .team-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-carousel {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
