@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary-green: #8B5A2B; /* Changed to Wood Brown but keeping variable name */
    --primary-dark: #4A3018; /* Dark Wood */
    --secondary-gold: #D4AF37; 
    --text-dark: #2C251E;
    --text-light: #5D534A;
    --bg-cream: #FDFBF7;
    --bg-beige: #F4F2E9;
    --bg-light-green: #F8F5F0; /* Changed to Light Wood Beige */
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light-green);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-name, .test-client {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

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

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

.container {
    max-width: 1536px;
    margin: 0 auto;
    /* padding: 0 5px; */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
    white-space: nowrap;
}

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

.btn-green:hover {
    background-color: var(--primary-dark);
}

.btn-outline-green {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 20px;
    font-size: 0.85rem;
    background: var(--bg-light-green);
    border-radius: 4px;
    font-weight: 500;
}

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

/* 1. Top Header */
.top-header {
    background-color: var(--bg-light-green);
    border-bottom: 1px solid #eaeaea;
    padding: 10px 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--primary-green);
}

.top-contact a i {
    color: var(--primary-green);
    font-size: 1.1rem;
    transition: var(--transition);
}

.top-contact a:hover i {
    color: var(--primary-green);
}

.top-social-lang {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-us {
    font-weight: 600;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
}

.social-icons .fb { background: #3b5998; }
.social-icons .ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icons .in { background: #0077b5; }
.social-icons .tw { background: #00acee; }
.social-icons .wa { background: #25d366; }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

.lang-switch img {
    width: 24px;
}

.lang-switch select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
}

/* 2. Navbar */
.navbar {
    background: var(--bg-light-green);
    padding: 2px 5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-left: 40px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-green);
}

.logo-text-box {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.brand-parent {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

.nav-arrow {
    font-size: 0.9rem;
    margin-left: 4px;
}

/* 3. Hero Section */
.hero-image-section {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
}

/* Common Section Styles */
section {
    padding: 10px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.section-header p {
    flex-basis: 100%;
    margin-top: 5px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
}

.dec-line-diamond {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dec-line-diamond::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--secondary-gold);
}

.dec-line-diamond::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-gold);
    transform: rotate(45deg);
}
.dec-line-diamond:first-child::before, .dec-line-diamond:first-child::after {
    /* Swap order for left side */
}
.section-header .dec-line-diamond:first-child {
    flex-direction: row-reverse;
}

/* 4. Heritage Story */
.heritage-story {
    background: var(--bg-light-green);
}

.heritage-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.heritage-text {
    flex: 1;
}

.heritage-list-container {
    flex: 1;
    min-width: 280px;
    padding-left: 30px;
}

.heritage-text h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: #633212; /* Brown color */
    margin-bottom: 10px;
}

.title-underline {
    width: 40px;
    height: 2px;
    background: var(--primary-green);
    margin-bottom: 25px;
}

.heritage-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.heritage-checklist {
    margin: 30px 0;
}

.heritage-checklist li {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.heritage-checklist i {
    color: var(--white);
    background: var(--primary-green);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.heritage-promo-img {
    max-width: 230px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(74, 48, 24, 0.12);
    border: 1px solid rgba(139, 90, 43, 0.15);
    display: block;
    transition: var(--transition);
}

.heritage-promo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(74, 48, 24, 0.18);
}

.heritage-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.img-tall {
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.img-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.img-stacked {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.img-stacked img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 15px;
}

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

.product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    background: var(--bg-light-green);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(56, 102, 65, 0.05);
    border: 1px solid rgba(179, 134, 55, 0.2);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(179, 134, 55, 0.15);
}

.product-grid .product-card {
    flex: 1;
    max-width: 300px;
    min-width: 220px;
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.product-card p, .product-card .product-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card > a {
    margin-top: auto;
    align-self: center;
}

/* Products page grid desktop */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Product card action buttons row */
.product-card-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.product-card-actions .btn-outline-green,
.product-card-actions .btn-green {
    flex: 1;
    padding: 9px 5px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

/* 6. Features */
.features {
    background: var(--bg-light-green);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8f0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.feature-item h4 {
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* 7. Trusted Brands */
.trusted-brands {
    padding: 0;
}

/* 8. Build Your Own */
.build-own {
    background: var(--bg-light-green);
    padding: 20px 0;
}

.build-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.build-img-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.build-img-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-img-right img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends the white background of the image with the green section background */
}

.build-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.build-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.custom-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.custom-features li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.custom-features i {
    color: var(--primary-green);
}

/* 9. Testimonials */
.testimonials {
    background: var(--bg-light-green);
}

.testimonial-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.test-card {
    background: var(--bg-light-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(56, 102, 65, 0.05);
    border: 1px solid rgba(179, 134, 55, 0.2);
    transition: var(--transition);
    padding: 30px;
    text-align: center;
    position: relative;
    flex: 1;
}

.stars {
    color: #f5b041;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.test-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.test-client {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

/* 10. Process */
.process {
    background: var(--bg-light-green);
    border-top: 1px solid rgba(179, 134, 55, 0.1);
    border-bottom: 1px solid rgba(179, 134, 55, 0.1);
    padding: 40px 0;
}

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

.step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--secondary-gold);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-gold);
    background: var(--bg-light-green);
    box-shadow: 0 4px 10px rgba(179, 134, 55, 0.1);
}

.step h4 {
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary-green);
    line-height: 1.3;
}

.step h4 span {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.timeline-arrow {
    color: var(--secondary-gold);
    font-size: 1.8rem;
    opacity: 0.5;
}

/* 11. Certifications */
.certifications {
    background: var(--bg-light-green);
    padding: 40px 0;
}

.cert-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.cert-icons {
    display: flex;
    gap: 30px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.icon-img-box {
    font-weight: 700;
    font-size: 1.4rem;
    padding: 4px 10px;
}

.blue-box { background: #0056b3; color: white; }
.blue-line-box { border: 2px solid #0056b3; color: #0056b3; border-top: 4px solid #0056b3; }

.circle-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.cert-item span {
    font-size: 0.65rem;
    font-weight: 600;
}

.cert-text {
    font-size: 0.85rem;
    color: var(--text-light);
    border-left: 2px solid #eaeaea;
    padding-left: 30px;
}

/* 12. Blogs */
.blogs {
    background: var(--bg-light-green);
}

.blogs-header h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.blog-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.blog-card {
    background: var(--bg-light-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(56, 102, 65, 0.05);
    border: 1px solid rgba(179, 134, 55, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.blog-card-img-wrap {
    width: 100%;
    height: 280px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(179, 134, 55, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

.blog-card-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-btn-wrap {
    text-align: right;
    padding-left: 20px;
}

/* Blog Listing Page */
.blogs-page {
    padding: 60px 0;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-post {
    background: var(--bg-light-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(179, 134, 55, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(179, 134, 55, 0.12);
}

.blog-post-img-wrap {
    width: 100%;
    height: 320px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(179, 134, 55, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

.blog-post-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.blog-post-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-category {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f7f1;
    color: var(--primary-green);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 15px;
}

.blog-post-title {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1.35;
}

.blog-post-meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-post-content {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* 13. Let's Grow Together */
.grow-together {
    background: var(--bg-light-green);
}

.grow-box {
    background: transparent;
    padding: 6px 0;
    color: var(--text-dark);
    position: relative;
}

.grow-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.grow-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
}

.grow-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.grow-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.grow-card {
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(56, 102, 65, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(56, 102, 65, 0.1);
}

.grow-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.grow-card h3 i {
    color: var(--primary-green);
}

.card-content p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.grow-card:nth-child(2) .card-content p {
    justify-content: center;
    align-items: center;
}

.card-content p i {
    color: var(--primary-green);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.card-content p img {
    width: 20px;
    margin-top: 2px;
}

.actions-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.actions-content .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-email {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid #eaeaea;
}

.btn-email:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.btn-cat {
    background: var(--primary-green);
    color: var(--white);
    border: 1px solid var(--primary-green);
}

.btn-cat:hover {
    background: var(--primary-dark);
}

.btn-wa {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

/* 14. Footer */
.footer {
    background: var(--bg-light-green);
    color: var(--text-dark);
    padding: 40px 10px 15px 10px;
    border-top: 1px solid #eaeaea;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.1fr 1.3fr 1.8fr;
    gap: 35px;
    padding-bottom: 15px;
}

.footer-col h4 {
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.footer-logo img {
    height: 95px !important;
    width: auto !important;
}

.footer-logo i {
    font-size: 2.2rem;
    color: var(--white);
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
}

.footer-logo .sub {
    font-size: 0.55rem;
    letter-spacing: 1px;
}

.brand-col p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.footer-col ul li a {
    font-size: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.newsletter-col p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.news-form {
    display: flex;
    margin-top: 15px;
}

.news-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    background: #fff;
    color: #333;
    outline: none;
    font-size: 1rem;
}

.btn-subscribe {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--secondary-gold);
    color: #333;
}

.footer-bottom {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Index-2 Specific Sections --- */
/* Hero */
.main-hero {
    position: relative;
    background: url('assets/hero_banner.png') center/cover no-repeat;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.main-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--secondary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-gold);
}
.modern-heading {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.highlight-text {
    color: var(--secondary-gold) !important;
    font-style: italic;
    font-weight: 400;
}
.modern-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    color: white !important;
}
.hero-btns {
    display: flex; gap: 20px; align-items: center;
    margin-bottom: 50px;
}
.btn-modern {
    padding: 16px 35px;
    font-size: 1rem;
    border-radius: 50px; /* Modern pill shape */
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-modern i { transition: transform 0.3s; }
.btn-modern:hover i { transform: translateX(5px); }

.btn-outline-light.btn-modern {
    border-color: rgba(255,255,255,0.4);
    background: transparent;
    color: white;
    font-weight: 600;
}
.btn-outline-light.btn-modern:hover {
    border-color: white;
    background: white;
    color: var(--primary-dark);
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}
.hero-stats-row strong { color: white; font-size: 1.1rem; }
.h-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* Export */
.where-we-export { padding: 80px 0; background: #fafafa; }
.export-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.export-card {
    background: white; padding: 40px 25px; text-align: center; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: 0.3s; 
    border: 1px solid #eee; border-top: 4px solid var(--primary-green);
}
.export-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

.export-icon {
    width: 65px; height: 65px; margin: 0 auto 20px;
    background: #f0f7f1; color: var(--primary-green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; transition: 0.4s ease;
}
.export-card:hover .export-icon {
    background: var(--primary-green); color: white;
    transform: rotateY(180deg);
}

.export-card h3 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 12px; }
.export-card p { font-size: 0.85rem; color: #666; }
.export-stats { display: flex; justify-content: center; gap: 50px; margin-top: 50px; padding-top: 40px; border-top: 1px solid #eee; }
.export-stats .stat { text-align: center; font-size: 1rem; color: #555; }
.export-stats .num { font-size: 2.2rem; font-weight: 700; color: var(--primary-green); }

/* Founder */
.founder-html-section { padding: 80px 0; background: #f4f6f4; }
.founder-html-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.founder-img-wrapper {
    border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 5px solid white; line-height: 0;
}
.founder-img-wrapper img { width: 100%; height: 450px; object-fit: cover; object-position: center top; }
.founder-text-col .sub-heading { color: var(--primary-green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.founder-text-col h2 { font-size: 2.2rem; color: var(--primary-dark); margin-bottom: 20px; }
.founder-quote { font-size: 1.1rem; font-style: italic; color: #555; margin-bottom: 30px; line-height: 1.8; border-left: 4px solid var(--primary-green); padding-left: 20px; }
.founder-name h4 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 5px; }
.founder-name span { font-size: 0.9rem; color: #777; display: block; margin-bottom: 30px; }

/* --- Inner Pages CSS --- */
.inner-hero {
    padding: 110px 0;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 63, 32, 0.75); /* Dark green overlay with enhanced contrast */
}

.relative-z {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.4);
}

.inner-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
}

/* --- Mobile Responsive & Tablet Styles --- */
@media (max-width: 1200px) {
    .collections-grid, .products-page-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1150px) {
    /* Header & Nav */
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-contact {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .top-contact a:last-child {
        display: none; /* Hide website URL to save space */
    }
    .top-social-lang {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .follow-us {
        display: none; /* Hide text on mobile */
    }
    .navbar .container {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .navbar .logo-container {
        flex: 1;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none; /* hidden by default, toggled by JS */
        flex-direction: column;
        order: 3;
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-actions {
        display: none !important; /* Hide extra nav buttons on tablet/mobile to prevent overflow */
    }
}

@media (max-width: 991px) {
    .container {
        /* padding: 0 5px; */
    }

    .heritage-grid, .grow-flex, .contact-grid, .founder-html-grid, .grow-cards {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 40px;
    }
    .build-grid {
        grid-template-columns: 1.5fr 1fr !important;
        gap: 40px;
    }
    .collections-grid, .products-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .features-grid, .testimonials-grid, .blogs-grid, .blog-page-grid, .export-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .grow-details, .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .founder-img-wrapper img { height: 350px; }
    .founder-text-col { text-align: center; }
    .founder-quote { border-left: none; padding-left: 0; }
    
    /* Specific section fixes */
    .build-img-left { display: none; } /* Hide left board image on tablet/mobile for cleaner layout */
    
    /* 4. Our Simple Export Process: 3 columns grid on tablet */
    .timeline {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px 20px !important;
        align-items: flex-start;
    }
    .timeline-arrow { display: none !important; } /* Hide arrows on tablet for cleaner grid */
    .step { width: 100%; text-align: center; }
    
    .cert-flex { flex-direction: column !important; text-align: center; }
}

@media (max-width: 768px) {
    .heritage-list-container {
        padding-left: 0 !important;
    }
    /* Typography & Text Align Improvements */
    .hero-text h1, .inner-hero h1, .main-hero h1 { font-size: 2.2rem; }
    .inner-hero { padding: 60px 0 !important; }
    .inner-hero p { font-size: 1rem !important; }
    .hero-text p, .main-hero p { font-size: 1rem; }
    .section-header h2, .heritage-text h2, .build-text h2, .grow-text h2, .founder-text-col h2 { font-size: 1.6rem; }
    h1 br, h2 br, h3 br, h4 br { display: none; } /* Remove desktop line-breaks for natural mobile wrapping */

    /* Remove extra spaces between product category sections */
    .section-header {
        margin-bottom: 16px !important;
        gap: 8px !important;
    }
    .products {
        padding-top: 20px !important;
        padding-bottom: 10px !important;
    }
    .products-page-grid {
        margin-bottom: 10px !important;
    }
    
    .main-hero { height: 60vh; text-align: center; }
    .hero-btns { flex-direction: column; align-items: center; }
    .export-grid { grid-template-columns: 1fr !important; }
    .export-stats { flex-direction: column; gap: 20px; margin-top: 30px; }
    
    /* Centering Sections */
    .heritage-text, .build-text, .grow-text { text-align: center; }
    .heritage-checklist, .custom-features, .grow-list { 
        display: inline-block; 
        text-align: left; 
        margin: 10px auto; 
    }
    .social-links { justify-content: center !important; }
    
    /* 1. Explore Our Collections: 2 columns, clean vertical cards */
    .product-grid, .products-page-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-card {
        padding: 10px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border-radius: 12px !important;
        gap: 0 !important;
    }
    .product-img-wrap {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        margin-bottom: 10px !important;
        border-radius: 8px !important;
    }
    .product-card > a {
        align-self: center !important;
        margin-top: auto !important;
        width: 100% !important;
    }
    .product-card h3 {
        font-size: 0.82rem !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    .product-card p, .product-card .product-desc {
        font-size: 0.72rem !important;
        margin-bottom: 6px !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 2 !important;
    }
    .product-card-actions {
        flex-direction: column !important;
        gap: 5px !important;
        margin-top: 6px !important;
    }
    .product-card-actions .btn-outline-green,
    .product-card-actions .btn-green {
        font-size: 0.7rem !important;
        padding: 6px 4px !important;
        width: 100% !important;
        justify-content: center !important;
        border-radius: 6px !important;
    }
    
    /* 2. Why Choose Eco Crafters: 1 column */
    .features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .feature-item h3 { font-size: 0.9rem; }
    .feature-item p { font-size: 0.8rem; }
    
    /* 3. What Our Clients Say: 1 column stack */
    .testimonial-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .test-card {
        padding: 20px !important;
        text-align: center;
        background: var(--bg-light-green) !important;
        border: 1px solid rgba(179, 134, 55, 0.2) !important;
        border-radius: 12px !important;
        box-shadow: 0 5px 20px rgba(56, 102, 65, 0.05) !important;
    }
    .test-card p { font-size: 0.9rem !important; font-style: italic; }
    .stars { justify-content: center; }
    
    /* 4. Our Simple Export Process: 2 columns grid on mobile */
    .timeline {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 15px !important;
    }
    .step { width: 100%; text-align: center; }
    .step-icon { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 10px; }
    .step h4 { font-size: 0.85rem; }
    .step p { font-size: 0.75rem; }
    
    /* 5. Latest From Our Blog: 1 column */
    .blog-grid, .blog-page-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .blog-card { display: flex !important; flex-direction: column !important; }
    .blog-img { height: 250px; width: 100%; } /* taller height for 1 column */
    .blog-card-img-wrap {
        height: 220px !important;
        padding: 15px !important;
    }
    .blog-content { padding: 10px; text-align: center; }
    .blog-content h3 { font-size: 0.85rem; }
    
    .blog-articles {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    .blog-articles .blog-card {
        margin-bottom: 20px !important;
    }
    .blog-articles .blog-content {
        padding: 25px !important;
        text-align: left !important;
    }
    .blog-articles .blog-content h3 {
        font-size: 1.3rem !important;
    }

    /* Header action in products page */
    .header-action { text-align: center !important; margin-top: 10px !important; }
    .header-action .btn { display: flex; justify-content: center; width: 100%; box-sizing: border-box; }

    /* 6. Certifications */
    .cert-icons {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .cert-item {
        flex: 1 1 40% !important; /* 2 items per row */
        margin-bottom: 15px;
    }
    
    /* Other Grids to 1 Column */
    .grow-details, .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Forms & Misc */
    .form-row { display: grid !important; grid-template-columns: 1fr !important; }
    .heritage-images {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        height: 180px !important;
    }
    .img-tall {
        height: 100% !important;
        width: 100% !important;
        display: block !important;
    }
    .img-tall img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        display: block !important;
    }
    .img-stacked {
        height: 100% !important;
        width: 100% !important;
        display: block !important;
    }
    .img-stacked img:first-child {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        display: block !important;
    }
    .img-stacked img:last-child {
        display: none !important;
    }
    
    /* Build Your Own Collection - mobile improvements */
    .build-own {
        padding: 20px 15px !important;
    }
    .build-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    .build-img-left {
        display: none !important;
    }
    .build-img-right {
        display: none !important;
    }
    .build-text {
        text-align: left !important;
    }
    .build-text h2 {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
    }
    .build-text p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    .custom-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    .custom-features li {
        font-size: 0.82rem !important;
        gap: 6px !important;
    }

    .heritage-promo-img {
        max-width: 350px !important;
        width: 100%;
        margin: 0 auto;
    }

    /* Grow Together section - fix extra space on mobile */
    .grow-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .grow-card {
        padding: 18px 16px !important;
    }
    .grow-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
        padding-bottom: 10px !important;
    }
    .card-content p {
        font-size: 0.88rem !important;
        margin-bottom: 8px !important;
    }
    /* Grow header - fix oversized heading on mobile */
    .grow-header {
        margin-bottom: 25px !important;
        padding: 0 5px !important;
    }
    .grow-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    .grow-header p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    .grow-header p br {
        display: none !important;
    }
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-modal:hover { color: var(--primary-green); }
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.modal-img-col img {
    width: 100%;
    border-radius: 8px;
    max-height: 400px;
    object-fit: cover;
}
.modal-info-col h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.modal-info-col p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}
.modal-socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    color: #555;
    font-weight: 600;
}
.modal-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f4;
    color: var(--primary-green);
    transition: 0.3s;
}
.modal-socials a:hover {
    background: var(--primary-green);
    color: white;
}
@media (max-width: 768px) {
    .modal-grid { grid-template-columns: 1fr; }
}

/* --- Hero Banner Slider --- */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2.4 / 1; /* Fixed aspect ratio to keep all slide heights exactly matching */
}
.hero-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
}
.hero-slider .slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}
.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps the images stretching to fill the exact height */
    display: block;
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45); /* Darker background for high visibility */
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem; /* Larger icon size */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    outline: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.slider-prev { left: 25px; }
.slider-next { right: 25px; }
.slider-prev:hover, .slider-next:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dots .dot.active {
    background: #ffffff;
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .hero-slider-section {
        aspect-ratio: 1.8 / 1 !important; /* Slightly taller aspect ratio on mobile so content is highly readable */
    }
    .slider-prev, .slider-next {
        display: none !important; /* Hide arrows on mobile for clean screen touch */
    }
    .slider-dots {
        bottom: 12px;
    }
}
