/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --section-padding: 80px;
    --section-header-gap: 3rem;
    --content-gap: 3rem;
    --card-gap: 2rem;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2d5a3d;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2d5a3d;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a8e6a3 0%, #c8e6c9 100%);
    color: #2d5a3d;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--content-gap);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15rem;
    opacity: 0.3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #a8e6a3;
    color: #2d5a3d;
    border-color: #a8e6a3;
}

.btn-primary:hover {
    background: #98d698;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 230, 163, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2d5a3d;
    transform: translateY(-2px);
}

.btn-outline {
    background: #a8e6a3;
    color: #2d5a3d;
    border-color: #a8e6a3;
}

.btn-outline:hover {
    background: #98d698;
    color: #2d5a3d;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--section-header-gap);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: #f0f8f0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--content-gap);
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.about-text {
    width: 100%;
    max-width: 900px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--card-gap);
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #a8e6a3;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #6b7280;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12rem;
    color: #e5e7eb;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--card-gap);
}

.service-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-card i {
    font-size: 3rem;
    color: #a8e6a3;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: var(--section-padding) 0;
    background: #f0f8f0;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--section-header-gap);
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: #a8e6a3;
    color: #2d5a3d;
    border-color: #a8e6a3;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--card-gap);
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    margin-bottom: 1.5rem;
}

.product-image i {
    font-size: 3rem;
    color: #a8e6a3;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.product-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a8e6a3;
    margin-bottom: 1.5rem;
}

.product-price:empty {
    display: none;
}

.product-actions {
    margin-top: auto;
}

/* Careers Section */
.careers {
    padding: var(--section-padding) 0;
    background: white;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    margin-bottom: var(--section-header-gap);
}

.careers-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.careers-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.job-openings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--card-gap);
    margin-bottom: var(--section-header-gap);
}

.job-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.job-card i {
    font-size: 3rem;
    color: #a8e6a3;
    margin-bottom: 1.5rem;
}

.job-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.job-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a3d;
}

.job-type {
    background: #a8e6a3;
    color: #2d5a3d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.job-description {
    text-align: justify;
    text-align-last: left;
}

.job-description,
.job-requirements,
.job-requirements ul,
.job-requirements li {
    text-align: left;
}

.job-requirements h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.job-requirements li {
    color: #6b7280;
    margin-bottom: 0.3rem;
    padding-left: 0;
    position: relative;
}

.job-requirements li::before {
    display: none;
}

.benefits {
    text-align: center;
}

.benefits h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--card-gap);
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #a8e6a3;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: #f0f8f0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--content-gap);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #a8e6a3;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.5;
}

.map-link {
    display: inline-block;
    margin-top: 0.4rem;
    color: #2d5a3d;
    font-weight: 500;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

.contact-map {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 20px;
    min-height: 320px;
    border: 1px solid #e5e7eb;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8e6a3;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0d4f1c;
    color: white;
    padding: 40px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: #a8e6a3;
}

.footer-section p {
    margin-bottom: 0.75rem;
}

.footer-contact {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.footer-contact i {
    width: 1.1rem;
    margin-top: 0.2rem;
    color: #a8e6a3;
    flex: 0 0 1.1rem;
}

.footer-contact span {
    display: block;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a8e6a3;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a5d2e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #a8e6a3;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #1a5d2e;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --section-header-gap: 2.5rem;
        --content-gap: 2rem;
        --card-gap: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        font-size: 8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-categories {
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 240px;
        padding: 0.75rem;
    }

    .contact-map iframe {
        min-height: 220px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-section h4 {
        margin-bottom: 0.75rem;
    }

    .footer-contact {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
        --section-header-gap: 2rem;
        --content-gap: 1.5rem;
        --card-gap: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer {
        padding: 32px 0 12px;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .contact-item i {
        margin-top: 0.2rem;
    }

    .contact-map {
        min-height: 220px;
        border-radius: 16px;
    }

    .contact-map iframe {
        min-height: 200px;
        border-radius: 12px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .job-type {
        align-self: flex-start;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-text,
.service-card,
.product-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #a8e6a3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #98d698;
}








