:root {
    /* Color Palette */
    --primary-color: #1A4D2E;
    --secondary-color: #4F3523;
    --accent-color: #4E9F3D;
    --accent-highlight: #FF9F1C;
    --text-dark: #333333;
    --text-light: #F5F5F5;
    --bg-light: #F9F9F9;
    --bg-cream: #FAF3E0;
    /* Soft Cream Background */
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Typography Utilities */
.heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sub-heading {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-highlight);
    margin: 1rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.full-width {
    width: 100%;
    text-align: center;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-right: 15px;
}

.language-switcher a {
    color: var(--white);
    text-decoration: none;
    padding: 2px 0;
    transition: var(--transition);
}

.language-switcher a:hover {
    color: var(--accent-highlight);
}

.language-switcher span {
    opacity: 0.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled,
.header.header-solid {
    background: rgba(26, 77, 46, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-highlight);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-highlight);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--accent-highlight);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.4);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=2069&auto=format&fit=crop');
    /* Placeholder Nature Image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(26, 77, 46, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent-highlight);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 2;
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Marquee */
.marquee-container {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.about-card.featured {
    background-color: var(--bg-cream);
    border-color: var(--accent-highlight);
}

.about-card .icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: var(--bg-cream);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.value-item h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #555;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bg-cream);
    z-index: 0;
    display: none;
    /* Hidden on mobile/wrap */
}

@media (min-width: 992px) {
    .process-steps::before {
        display: block;
    }
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.2);
}

.step-content h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 1rem;
}

/* Products Section */
.products {
    background-color: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 77, 46, 0.15);
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
}

.badge.hot {
    background-color: #ff4757;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    /* Hidden initially */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: bottom 0.4s ease;
    opacity: 0;
}

.product-card:hover .product-actions {
    bottom: 0;
    opacity: 1;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-btn:hover {
    background-color: var(--accent-highlight);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
}

.product-content {
    padding: 1.5rem;
    text-align: left;
    /* Aligned left for better readability */
}

.rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.product-card:hover .product-content h3 {
    color: var(--primary-color);
}

.category {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Values Parallax Section */
.values {
    background-image: url('https://images.unsplash.com/photo-1550989460-0adf9ea622e2?q=80&w=2074&auto=format&fit=crop');
    /* Another Nature BG */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 77, 46, 0.9), rgba(26, 77, 46, 0.4));
    z-index: 1;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.col-half {
    width: 50%;
    padding: 0 1rem;
}

.value-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.value-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.value-list i {
    color: var(--accent-highlight);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.stat-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
}

.stat-item .count {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-highlight);
}

.stat-item .label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--bg-cream);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-highlight);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    flex: 1.5;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

/* Operating Model Section */
.operating-model {
    background-color: var(--white);
}

.model-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.model-item:last-child {
    margin-bottom: 0;
}

.model-item.reverse {
    flex-direction: row-reverse;
}

.model-image-wrapper {
    flex: 1;
    position: relative;
    padding-bottom: 3rem;
    padding-right: 3rem;
}

.model-item.reverse .model-image-wrapper {
    padding-right: 0;
    padding-left: 3rem;
}

.model-main-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.model-sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 20px;
    border: 10px solid var(--white);
    object-fit: cover;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.model-item.reverse .model-sub-img {
    right: auto;
    left: 0;
}

.model-content {
    flex: 1;
}

.model-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.model-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.model-content ul {
    margin: 1.5rem 0;
    list-style: none;
    /* Remove default padding/bullets */
    padding-left: 0;
}

.model-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
    position: relative;
}

.model-content li::before {
    content: "\f14a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 5px;
}

.model-content li i {
    display: none;
}

/* Footer */
.footer {
    background-color: #111;
    color: #888;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.design-credit i {
    color: var(--accent-highlight);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 992px) {
    .header .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        /* Above everything */
    }

    .header .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .header .nav-links a {
        font-size: 1.2rem;
        margin: 1rem 0;
        display: block;
    }

    .header .btn-contact {
        display: none;
    }

    .mobile-toggle {
        display: block;
        z-index: 1002;
        /* Above the menu background */
    }

    /* Mobile Menu Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active+.nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 3rem;
    }

    .row {
        flex-direction: column;
    }

    .col-half {
        width: 100%;
        padding: 0;
        margin-bottom: 3rem;
    }

    .col-half:last-child {
        margin-bottom: 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-box {
        gap: 1rem;
    }

    .model-item,
    .model-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .model-image-wrapper {
        padding-right: 0;
        padding-bottom: 3rem;
        margin-bottom: 2rem;
    }

    .model-item.reverse .model-image-wrapper {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Prevent overflow on small screens */
        gap: 1.5rem;
    }

    .product-img {
        height: 220px;
    }

    .value-heading {
        font-size: 2.2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .stat-box {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }
}