/* Global Styles */
:root {
    --primary-color: #4a7c59; /* Earth-tone green */
    --secondary-color: #f8f9fa; /* Light background */
    --accent-color: #6a994e; /* Accent green */
    --text-color: #212529; /* Dark text */
    --light-text: #6c757d; /* Medium gray text */
    --white: #ffffff;
    --light-bg: #f8f9fa; /* Very light gray */
    --border-color: #dee2e6; /* Light border */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.logo-container h1 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 100;
}

nav.active ul {
    flex-direction: column;
    align-items: center;
}

nav.active ul li {
    margin: 15px 0;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/1458694/pexels-photo-1458694.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-details {
    margin-top: 50px;
    clear: both;
}

.about-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.impact-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 10px;
}

.impact-list li {
    padding: 8px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.impact-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    width: 25px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

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

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    background-color: rgba(74, 124, 89, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 0;
}

/* Products Section */
.products {
    background-color: var(--light-bg);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.category-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.category h3 {
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.category ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.category ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

.category ul li:last-child {
    border-bottom: none;
}

.product-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.product-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Offerings Section */
.offerings {
    background-color: var(--white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.offering-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.offering-card:hover {
    transform: translateY(-10px);
}

.offering-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.offering-card:hover img {
    transform: scale(1.05);
}

.offering-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    position: relative;
}

.offering-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.offering-card p {
    padding: 15px 20px 20px;
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-info h3, .contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after, .contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
}

.contact-item p {
    margin-bottom: 0;
}

.business-hours {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.business-hours h4 {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.business-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.business-hours p {
    margin-bottom: 10px;
    font-size: 15px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-small {
    width: 40px;
    height: auto;
    margin-right: 15px;
}

.footer-logo p {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Process Section */
.process {
    background-color: var(--white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    position: relative;
}

.step-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0.7;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* Sustainability Section */
.sustainability {
    background-color: var(--light-bg);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.initiative-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.initiative-card:hover {
    transform: translateY(-10px);
}

.initiative-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.initiative-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.initiative-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.initiative-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 0;
}

.sustainability-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        margin: 0 auto;
        max-width: 600px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .sustainability-stats {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        max-width: 90%;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .values {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    section h2 {
        font-size: 30px;
    }
    
    .contact-form, .contact-info {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h2 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .product-categories,
    .offerings-grid,
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        min-width: 100%;
    }
    
    .logo-container h1 {
        font-size: 18px;
    }
    
    .logo {
        width: 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .about-text p,
    .category ul li,
    .offering-card p,
    .initiative-card p {
        font-size: 15px;
    }
    
    .category,
    .value-item,
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}