/* --- Variables & Setup --- */
:root {
    /* Colors */
    --clr-primary: #87c946;
    --clr-primary-dark: #6eb32f;
    --clr-primary-light: #e7f7d9;
    --clr-bg-light: #f9fbf7;
    --clr-text: #333333;
    --clr-text-light: #666666;
    --clr-white: #ffffff;
    --clr-black: #111111;
    --clr-border: #e0e0e0;

    /* Typography - Fluid scaling */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --fs-base: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.75rem;
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 6vw, 3.5rem);
    --fs-h3: clamp(1.5rem, 4vw, 2.2rem);
    --fs-h4: clamp(1.25rem, 3vw, 1.75rem);
    --fs-body: clamp(1rem, 2vw, 1.125rem);

    /* Layout Basics */
    --max-width: 1400px;
    --spacing-section: clamp(3rem, 10vw, 6rem);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 85px;
    --touch-target: 44px;
}

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

/* Safari & Browser Normalization */
button,
input,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
}

/* Ensure consistent backgrounds for Safari inputs */
input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    /* Base for rem units */
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--clr-text);
    background-color: var(--clr-bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Universal Media Handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    aspect-ratio: attr(width) / attr(height);
    /* Fallback */
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: inline-block;
    /* Helps with touch targets */
    min-height: var(--touch-target);
    min-width: var(--touch-target);
    display: inline-flex;
    align-items: center;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-section) 0;
}

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

.bg-light {
    background-color: #f1f6ec;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-black);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-wrap: balance;
    /* Prevents orphans on modern browsers */
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
}

h4 {
    font-size: var(--fs-h4);
    font-weight: 600;
}

.highlight {
    color: var(--clr-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    /* More modern pill shape */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
    min-width: var(--touch-target);
    min-height: var(--touch-target);
}

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

@media (hover: hover) {
    .btn-primary:hover {
        background-color: var(--clr-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(135, 201, 70, 0.3);
    }
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}

@media (hover: hover) {
    .btn-secondary:hover {
        border-color: var(--clr-primary);
        color: var(--clr-primary);
        transform: translateY(-2px);
    }
}

.btn-whatsapp {
    background-color: #ffffff;
    color: #1a6e35;
    border: 1px solid #ffffff;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) {
    .btn-whatsapp:hover {
        background-color: #f0f0f0;
        border-color: #f0f0f0;
        color: #1a6e35;
        transform: translateY(-2px);
    }
}

.btn-link {
    color: var(--clr-primary);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--transition);
}

@media (hover: hover) {
    .btn-link:hover::after {
        width: 100%;
    }
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: var(--clr-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Nav links: white on transparent header, dark when scrolled */
.header:not(.scrolled) .nav-links a,
.header:not(.scrolled) .lang-dropdown-btn {
    color: #ffffff;
}

.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .lang-dropdown-btn:hover {
    color: var(--clr-primary);
}

/* Dropdown menu items always dark (they appear on a white panel) */
.header:not(.scrolled) .dropdown-menu li a {
    color: var(--clr-text);
}

.header:not(.scrolled) .dropdown-menu li a:hover {
    color: var(--clr-primary);
}

.header:not(.scrolled) .nav-links .arrow {
    color: #ffffff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    min-width: 0;
    /* Allow shrinking if needed */
}

.logo-img {
    height: 4rem;
    /* 64px - increased from 50px */
    width: auto;
    object-fit: contain;
    transition: height var(--transition);
}

/* Mobile Nav Overlay */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 20rem;
    height: 100vh;
    background: var(--clr-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav.active {
    right: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-links a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-text);
    width: 100%;
    padding: 0.5rem 0;
}

/* Dropdown Support */
.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text-light);
}

.arrow {
    font-size: 0.8rem;
    margin-left: 0.4rem;
    transition: transform 0.3s;
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

.nav-right {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.nav-right .btn {
    width: 100%;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: var(--touch-target);
    height: var(--touch-target);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-toggle span {
    width: 1.75rem;
    height: 3px;
    background-color: var(--clr-black);
    transition: var(--transition);
    border-radius: 2px;
}

/* Desktop Navigation (min-width: 1024px) */
@media (min-width: 1024px) {
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 2rem;
    }

    .header {
        height: 120px;
    }

    .logo-img {
        height: 180px;
    }

    :root {
        --header-height: 120px;
    }

    .mobile-toggle {
        display: none;
    }

    .nav {
        display: contents;
    }

    .nav-links {
        flex-direction: row;
        gap: 2.5rem;
        grid-column: 2;
        align-items: center;
    }

    .nav-links a {
        font-size: var(--fs-sm);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        padding: 0;
        min-height: auto;
        min-width: auto;
        height: var(--header-height);
    }

    .nav-links a:hover {
        color: var(--clr-primary);
    }

    .nav-right {
        margin-top: 0;
        flex-direction: row;
        border-top: none;
        padding-top: 0;
        grid-column: 3;
        justify-self: end;
        align-items: center;
        gap: 2rem;
    }

    /* Desktop Dropdown */
    .dropdown {
        flex-direction: row;
        align-items: center;
        height: var(--header-height);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: var(--clr-white);
        min-width: 200px;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: block;
        /* Important: reset from mobile's none/block toggle */
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 0.6rem 1.5rem;
        height: auto;
        width: 100%;
        color: var(--clr-text);
        text-transform: none;
        letter-spacing: 0;
        font-size: 0.95rem;
    }

    .dropdown-menu li a:hover {
        background-color: var(--clr-bg-light);
        color: var(--clr-primary);
    }
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.25rem;
}

.lang-dropdown-btn:hover,
.lang-dropdown.open .lang-dropdown-btn {
    color: var(--clr-primary);
}

.lang-dropdown.open .lang-dropdown-btn .arrow {
    transform: rotate(180deg);
}

/* Mobile: inline list below trigger */
.lang-dropdown-menu {
    list-style: none;
    padding-left: 1rem;
    padding-top: 0.4rem;
    display: none;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text-light);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
}

@media (min-width: 1024px) {
    .lang-dropdown-btn {
        height: var(--header-height);
        padding: 0 0.25rem;
    }

    /* Desktop: absolute dropdown on hover */
    .lang-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: var(--clr-white);
        min-width: 80px;
        padding: 0.75rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: block;
    }

    .lang-dropdown:hover .lang-dropdown-menu,
    .lang-dropdown.open .lang-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .lang-dropdown-menu li {
        width: 100%;
    }

    .lang-dropdown-menu li a {
        padding: 0.5rem 1.25rem;
        text-align: center;
        color: var(--clr-text);
        font-size: var(--fs-sm);
        font-weight: 600;
        font-family: var(--font-body);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .lang-dropdown-menu li a:hover {
        background-color: var(--clr-bg-light);
        color: var(--clr-primary);
    }
}

/* Sections - Hero */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

/* Dark gradient at top so header text stays readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero {
        height: auto;
        aspect-ratio: 1920 / 700;
        min-height: 600px;
    }
}

/* Bottom fade — blends hero into page background */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, #f9fbf7);
    z-index: 2;
    pointer-events: none;
}

/* Layer 1 – video fills the section like a background image */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Layer 2 – dark scrim */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Layer 3 – content always on top */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
    text-align: center;
    color: var(--clr-white);
    box-sizing: border-box;
}

.hero-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

/* Global Badge Component */
.badge {
    background: rgba(135, 201, 70, 0.15);
    color: var(--clr-primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(135, 201, 70, 0.4);
    display: inline-block;
    backdrop-filter: blur(4px);
}

.hero-content .badge {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: var(--fs-body);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.hero-actions .btn {
    width: 100%;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        flex: 1;
    }
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1rem, 4vw, 2rem);
}

.product-card {
    position: relative;
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Globale overlay link voor klikbare kaarten */
.card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-card .btn-link, .blog-card .btn-link {
    position: relative;
    z-index: 2;
}

@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}

.product-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

@media (hover: hover) {
    .product-card:hover .product-img img {
        transform: scale(1.05);
    }
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-info .btn-link {
    margin-top: auto;
}

/* Products Detail Page Layout */
.products-page {
    margin-top: var(--header-height);
}

.products-intro {
    padding: 4rem 0 4rem;
    background: linear-gradient(to bottom, var(--clr-white), #f9fbf7);
    text-align: center;
}

.products-intro h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--clr-black);
    font-weight: 700;
    margin: 1.5rem auto;
    max-width: 900px;
    line-height: 1.2;
}

.products-intro .accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--clr-primary);
    margin: 2rem auto 0;
    border-radius: 2px;
}

.product-feature-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

@media (hover: hover) {

    .product-feature-link:hover~*,
    .product-feature:has(.product-feature-link:hover) {
        filter: brightness(0.95);
        cursor: pointer;
    }
}

.product-feature {
    position: relative;
    transition: filter 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 25rem;
}

@media (min-width: 768px) {
    .product-feature {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-feature:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.bg-white {
    background-color: var(--clr-white);
}

.product-feature-content,
.product-feature-image {
    flex: 1 1 100%;
}

@media (min-width: 768px) {

    .product-feature-content,
    .product-feature-image {
        flex: 1 1 50%;
        min-width: 20rem;
    }
}

.product-feature-content {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .product-feature-content {
        padding: 6rem 8%;
    }
}

.product-locations {
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-feature-title {
    font-size: var(--fs-h1);
    color: var(--clr-primary-dark);
    margin-bottom: 1rem;
    line-height: 1;
}

.product-feature-content p {
    font-size: var(--fs-body);
    line-height: 1.7;
    max-width: 34rem;
    color: var(--clr-text);
}

.product-feature-content .pd-features,
.pd-row-content .pd-features {
    column-count: 1;
}

@media (min-width: 1024px) {

    .product-feature-content .pd-features,
    .pd-row-content .pd-features {
        column-count: 2;
        column-gap: 2rem;
    }
}

.product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 2rem 0;
    max-width: 34rem;
}

.pill {
    background-color: var(--clr-primary-light);
    color: var(--clr-primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-feature-image {
    position: relative;
    overflow: hidden;
    min-height: 25rem;
}

.product-feature-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

.features-list {
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: '→';
    color: var(--clr-primary);
    font-weight: bold;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
}

.blog-card {
    position: relative;
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

@media (hover: hover) {
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
}

.blog-img {
    aspect-ratio: 3 / 2;
    background-color: var(--clr-border);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content .date {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: var(--fs-sm);
    flex-grow: 1;
}

.blog-content .btn-link {
    margin-top: auto;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

.contact-details {
    margin-top: 2.5rem;
    background: var(--clr-bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Forms */
.form {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px var(--clr-primary-light);
}

/* Footer Section */
.footer {
    background-color: #1a3c1a;
    color: #e7f7d9;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

/* Left Column: Brand & Newsletter */
.footer-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.footer-cta-title .highlight {
    color: #90d24b;
}

.footer-cta-desc {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.footer-actions-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

#footer-newsletter-form {
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border-radius: 100px !important;
    padding: 5px 5px 5px 22px !important;
    border: 1px solid #e5e7eb !important;
    width: 350px !important;
    max-width: 100% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
}

.footer-email-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #444;
    outline: none;
    min-width: 0;
    font-family: var(--font-body);
}

.footer-email-input::placeholder {
    color: #64748b;
    opacity: 1;
}

.footer .footer-join-btn {
    flex-shrink: 0 !important;
    background-color: #90d24b !important;
    color: #ffffff !important;
    padding: 10px 28px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.footer-join-btn:hover {
    background-color: #76b13d;
    transform: translateY(-1px);
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background-color: #ffffff;
    color: #1a6e35;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #ffffff;
    width: 350px;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-whatsapp-btn:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    background-color: #87c946;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    width: 350px;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-contact-btn:hover {
    background-color: #6eb32f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 201, 70, 0.3);
}

/* Label Styling */
.footer-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2rem;
}

/* Nav Column */
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 0.35rem;
}

.footer-nav-col ul li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e7f7d9;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
    color: #87c946;
}

/* Contact Column */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-icon-circle {
    width: 44px;
    height: 44px;
    background: #e9e9df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3c1a;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 1rem;
    color: #e7f7d9;
    line-height: 1.5;
    font-weight: 500;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    flex-direction: column;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-bottom-left span {
    font-size: 0.9rem;
    color: #666;
}

.footer-bottom-left a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-bottom-left a:hover {
    color: #111;
    border-color: #111;
}

.footer-bottom-icons {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-icon-link {
    color: #666;
    transition: color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-bottom-icon-link:hover {
    color: #111;
}

/* Modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--clr-white);
    padding: 2.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform var(--transition);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-light);
}

.close-modal:hover {
    color: var(--clr-black);
}

/* Responsive Design */
/* Remove old redundant media queries */

/* Floating Inquiry Widget */
.inquiry-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.inquiry-toggle {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-width: var(--touch-target);
    min-height: var(--touch-target);
}

.inquiry-toggle:hover {
    transform: scale(1.05);
    background-color: var(--clr-primary-dark);
}

.inquiry-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.inquiry-window {
    position: absolute;
    bottom: 5rem;
    right: 0;
    width: min(90vw, 23.75rem);
    /* Responsive width */
    max-height: calc(90vh - 6rem);
    /* Ensure it fits on screen */
    background: var(--clr-white);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.inquiry-widget.open .inquiry-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.inquiry-widget.open .inquiry-toggle {
    /* Keep visible as requested */
    background-color: #3E6D10;
    /* Match header color when open */
}

.inquiry-widget.open .inquiry-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.inquiry-header {
    background-color: #3E6D10;
    color: var(--clr-white);
    padding: 1.5rem 1.5rem 1rem;
    position: relative;
    flex-shrink: 0;
}

.inquiry-header h3 {
    margin-bottom: 0.15rem;
    color: var(--clr-white);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.inquiry-header p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
}

.inquiry-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--clr-white);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.inquiry-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.inquiry-body {
    padding: 1.2rem 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

.inquiry-body .form-group {
    margin-bottom: 0.6rem;
}

.inquiry-body .form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #555;
    margin-bottom: 0.4rem;
}

.inquiry-body .form-group input,
.inquiry-body .form-group textarea {
    padding: 0.55rem 0.9rem;
    background-color: #F3F2EE;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
    color: #333;
}

.inquiry-body .form-group input::placeholder,
.inquiry-body .form-group textarea::placeholder {
    color: #999;
}

.inquiry-body .btn-block {
    background-color: #74B72E;
    color: var(--clr-white);
    padding: 0.85rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.inquiry-body .btn-block:hover {
    background-color: #63a025;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(116, 183, 46, 0.3);
}

.inquiry-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: #999;
}

.inquiry-footer a {
    color: inherit;
    text-decoration: underline;
}

.inquiry-success {
    text-align: center;
    color: var(--clr-primary-dark);
    font-weight: 500;
    padding: 2rem 0;
}

@media (max-width: 480px) {
    .inquiry-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .inquiry-window {
        right: -1rem;
        /* Adjust position for mobile padding against side */
        width: calc(100vw - 2rem);
    }
}

/* Product Detail Specific Styles */
.product-detail-page {
    background-color: #f7f6f1;
}

.product-detail-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background-color: #f7f6f1;
    margin-top: var(--header-height);
}

@media (min-width: 992px) {
    .product-detail-hero {
        flex-direction: row;
        min-height: 80vh;
    }
}

.product-detail-hero-content {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .product-detail-hero-content {
        flex: 1 1 50%;
        padding: 4rem 8%;
    }
}

.product-detail-hero-image {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .product-detail-hero-image {
        flex: 1 1 50%;
        min-height: 400px;
    }
}

.product-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .product-detail-hero-image img {
        border-radius: 12px 0 0 12px;
    }
}

.pd-title {
    font-size: var(--fs-h1);
    color: var(--clr-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

/* Detail Rows */
.pd-row {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 2rem;
    padding: 0 1.5rem;
}

@media (min-width: 992px) {
    .pd-row {
        flex-direction: row;
        align-items: center;
        gap: 6rem;
        padding: 0 4%;
        margin: 6rem auto;
    }

    .pd-row:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.pd-row-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
}

@media (min-width: 992px) {
    .pd-row-img {
        flex: 1 1 40%;
        aspect-ratio: 4 / 3;
    }
}

.pd-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-row-content {
    padding: 1rem 0;
}

@media (min-width: 992px) {
    .pd-row-content {
        flex: 1 1 60%;
        padding: 2rem 0;
    }
}

.pd-badge {
    display: inline-block;
    background-color: #e6f0db;
    color: #558732;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pd-row-content h3 {
    font-size: 2.2rem;
    color: var(--clr-black);
    margin-bottom: 1rem;
}

.pd-row-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pd-features {
    list-style: none;
    margin-top: 1.5rem;
}

.pd-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--clr-text);
}

.pd-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #558732;
    font-weight: bold;
}

/* Turmeric — orange */
#turmeric .product-feature-title { color: #e66b00; }
#turmeric .pd-features li::before { color: #e66b00; }

/* Mandarins — deep orange */
#mandarins .product-feature-title { color: #ff5722; }
#mandarins .pd-features li::before { color: #ff5722; }

/* Other Products — teal blue */
#other-products .product-feature-title { color: #1a7fa3; }
#other-products .pd-features li::before { color: #1a7fa3; }

.pd-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.pd-stat {
    display: flex;
    flex-direction: column;
}

.pd-stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #558732;
    font-family: var(--font-heading);
}

.pd-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-light);
}

.pd-hero-box {
    position: absolute;
    bottom: 3rem;
    left: -4rem;
    /* overlaps the image */
    background: #dcf2b5;
    padding: 2rem;
    border-radius: 12px;
    max-width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pd-hero-box p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #2b4d16;
}

.pd-hero-box .loc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #558732;
}

/* Contact block on detail page */
.pd-contact-block {
    background-color: #e8e3d8;
    /* Footer-ish beige */
    padding: 5rem 5%;
}

.pd-contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pd-contact-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pd-contact-wrapper .contact-form-card {
    background: var(--clr-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
    text-align: left;
}

/* Removed redundant Product Detail media queries */

/* =========================================
   About Us Page Styles
   ========================================= */

.about-page-main {
    margin-top: var(--header-height);
    background-color: var(--clr-bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.text-left {
    text-align: left;
}

.align-center {
    align-self: center;
}

.mr-half {
    margin-right: 0.5rem;
}

.mt-half {
    margin-top: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.pt-large {
    padding-top: 6rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.text-white {
    color: var(--clr-white) !important;
}

.section-badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
}

.about-origin .main-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-black);
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--clr-text-light);
}

.custom-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .custom-card-img {
        aspect-ratio: auto;
        min-height: 400px;
    }

    .custom-card-img.tall {
        min-height: 500px;
    }

    .custom-card-img.extra-tall {
        min-height: 600px;
    }
}

.radius-tl-lg {
    border-radius: 40px 12px 12px 12px;
}

.radius-all {
    border-radius: 12px;
}

.shadow-right {
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.03);
}

.shadow-left {
    box-shadow: -20px 20px 0px rgba(0, 0, 0, 0.03);
}

.quote-card-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.quote-box {
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    max-width: 450px;
}

.white-card {
    background-color: var(--clr-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-family: serif;
    font-size: 6rem;
    color: var(--clr-primary-light);
    position: absolute;
    top: -2rem;
    left: 1rem;
    line-height: 1;
}

.quote-box blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-box cite {
    font-weight: 600;
    color: var(--clr-primary-dark);
    font-style: normal;
}

.facility-cards {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.fac-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fac-icon-container {
    width: 50px;
    height: 50px;
    background-color: var(--clr-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fac-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.overlay-card {
    position: absolute;
    padding: 1.5rem;
    border-radius: 8px;
    z-index: 2;
    max-width: 250px;
}

.drop-shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: none;
    width: max-content;
}

.bl-offset {
    bottom: -2rem;
    left: -2rem;
}

.bl-offset-small {
    bottom: -1rem;
    left: -1rem;
}

.tl-offset-small {
    top: -1rem;
    left: -1rem;
}

.small-icon {
    font-size: 1.25rem;
}

.process-images {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.proc-top {
    z-index: 2;
}

.proc-bottom {
    z-index: 1;
}

.mt-minus {
    margin-top: -4rem;
}

.dark-section {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

.solid-dark {
    background-color: #1f1f1f;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transparent-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-green {
    background-color: var(--clr-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.info-callout {
    background-color: var(--clr-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--clr-primary);
    color: var(--clr-text);
}

.info-callout-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feat-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.feat-card:hover {
    transform: translateY(-5px);
}

.feat-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.bg-light-green {
    background-color: #e7f7d9;
    color: var(--clr-primary-dark);
}

.feat-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-black);
    line-height: 1.4;
}

/* Integrated above */

/* Company Facts Block */
.company-facts {
    padding: var(--spacing-section) 0;
}

.company-facts h2 {
    margin-bottom: 2.5rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fact-item {
    background: var(--clr-white);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

@media (hover: hover) {
    .fact-item:hover {
        border-color: var(--clr-primary);
        box-shadow: 0 4px 16px rgba(135, 201, 70, 0.1);
    }
}

.fact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-primary-dark);
    margin-bottom: 0.5rem;
}

.fact-value {
    font-size: 1.05rem;
    color: var(--clr-text);
    line-height: 1.6;
}

/* =========================================
   Product Info Sections (reusable)
   ========================================= */

.product-info-section {
    padding: var(--spacing-section) 0;
}

.product-info-section.bg-alt {
    background-color: #f7f6f1;
}

.product-info-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--clr-text);
}

.product-info-section h2 .highlight {
    color: var(--clr-primary);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--clr-white);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    border: 1px solid var(--clr-border);
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary-dark);
    margin-bottom: 0.75rem;
}

.info-card p,
.info-card ul {
    color: var(--clr-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: 700;
}

/* Product quick-facts row */
.product-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-quick-facts .fact-item {
    text-align: center;
    padding: 1.25rem 1rem;
}

.product-quick-facts .fact-label {
    margin-bottom: 0.35rem;
}

/* =========================================
   FAQ Accordion
   ========================================= */

.faq-section {
    padding: var(--spacing-section) 0;
}

.faq-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--clr-text);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--clr-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text);
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--clr-primary-dark);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-text-light);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '−';
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   Blog Page Styles
   ========================================= */

.blog-page-main {
    margin-top: 80px;
    background-color: #f6f7f3;
}

/* Blog Hero */
.blog-hero {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-hero {
        flex-direction: row;
        align-items: center;
        padding: 5rem 5% 4rem;
        gap: 4rem;
    }
}

.blog-hero-content {
    flex: 1 1 50%;
}

.blog-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.blog-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.blog-hero-title em {
    font-style: italic;
    color: var(--clr-primary);
}

.blog-hero-content p {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    max-width: 440px;
}

.blog-hero-image {
    flex: 1 1 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-height: 380px;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blog Grid */
.blog-grid-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5% 5rem;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .blog-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Card */
.blog-article-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.blog-article-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.blog-article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.blog-article-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.blog-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.blog-category.market {
    background-color: #fff3e0;
    color: #e65100;
}

.blog-category.sustainability {
    background-color: #e0f2f1;
    color: #00796b;
}

.blog-article-date {
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

.blog-article-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.6rem;
    color: var(--clr-text);
}

.blog-article-card-body p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
}

.blog-article-card-body .btn-link {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-article-card-body .btn-link:hover {
    color: #2d5a14;
}

/* Load More */
.blog-load-more {
    text-align: center;
    padding: 2rem 0 4rem;
}

.btn-outline-green {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    background: transparent;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

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

/* Blog Responsive */
/* Integrated above */

.contact-page-main {
    margin-top: var(--header-height);
    background-color: #f4f1ec;
}

/* Contact Hero — light, airy, left-aligned */
.contact-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-hero {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 4rem 5% 3rem;
    }
}

.contact-hero-text {
    flex: 1;
}

.contact-hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}

.contact-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--clr-text);
}

.contact-hero-title em {
    font-style: italic;
    color: var(--clr-primary-dark);
}

.contact-hero-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    margin-top: 1rem;
}

.contact-hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Body: two-column */
.contact-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-body {
        grid-template-columns: 1fr 1.4fr;
        padding: 1rem 5% 5rem;
    }
}

/* Left info panel */
.contact-info-panel {
    background: #eae7e0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* HQ Header with icon */
.contact-hq-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-hq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1rem;
}

.contact-hq-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 0;
}

/* Regional lead */
.contact-regional-lead {
    margin-top: 0.5rem;
}

.contact-regional-lead span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 0.25rem;
}

.contact-regional-lead strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text);
}

/* Contact detail rows */
.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.contact-detail-row .cd-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.contact-detail-row a {
    color: var(--clr-text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-row a:hover {
    color: var(--clr-primary-dark);
}

/* LinkedIn inline row */
.contact-linkedin-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-linkedin-row .cd-icon-li {
    width: 28px;
    height: 28px;
    background: #0077b5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-linkedin-row .cd-icon-li svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.contact-linkedin-row a {
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-linkedin-row a:hover {
    color: #0077b5;
}

/* Operations section */
.contact-operations {
    margin-top: 1rem;
}

.contact-operations-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: 0.75rem;
}

.contact-ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-ops-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1rem;
}

.contact-ops-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
    margin-bottom: 0.15rem;
}

.contact-ops-card span {
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

/* Right form panel */
.contact-form-panel {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.contact-form-panel h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

/* Form labels uppercase */
.contact-form-panel .form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-text-light);
}

.contact-form-panel .form-group input,
.contact-form-panel .form-group textarea {
    background: #f4f1ec;
    border: 1px solid #e0ddd6;
    border-radius: 8px;
}

.contact-form-panel .form-group input:focus,
.contact-form-panel .form-group textarea:focus {
    border-color: var(--clr-primary);
    background: #fff;
}

/* Green gradient send button */
.btn-send-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #87c946 0%, #6eb32f 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.btn-send-inquiry:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-send-inquiry svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Security note */
.contact-security-note {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b0ada6;
    margin-top: 1.25rem;
}

/* Responsive */
/* Integrated above */
/* ── Form Feedback Messages ─────────────────────────────────────────────── */
.form-feedback {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.form-feedback--success {
    background: #edf7e5;
    color: #3a6e1f;
    border: 1px solid #b5dfa0;
}

.form-feedback--error {
    background: #fdf0f0;
    color: #a12b2b;
    border: 1px solid #f3bbbb;
}

/* =========================================
   Other Products Catalog Grid
   ========================================= */

.catalog-hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4%;
}

.catalog-card {
    background: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.catalog-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.catalog-card-body {
    padding: 1.5rem;
}

.catalog-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 0.5rem;
}

.catalog-card-body p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin: 0;
}

.catalog-section-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 4% 0;
    text-align: center;
}

.catalog-section-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.catalog-section-intro p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Honeypot — visually hidden for real users, accessible to bots ──────── */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Related Articles */
.related-articles {
    max-width: 980px;
    margin: 4rem auto 5rem;
    padding: 0 2rem;
    text-align: center;
}

.related-articles h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-black);
    margin: 0 auto 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--clr-primary-light);
    display: inline-block;
    text-align: center;
}

.related-articles .blog-articles-grid.related-articles-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 auto;
}

.related-articles .blog-articles-grid.related-articles-grid .blog-article-card {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: left;
    /* Keep card content left-aligned for readability */
}

@media (max-width: 768px) {
    .related-articles .blog-articles-grid.related-articles-grid .blog-article-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ─── intl-tel-input Overrides ────────────────────────────────────────── */
.iti {
    width: 100%;
    display: block;
}

.iti__country-list {
    background-color: var(--clr-white) !important;
    border: 1px solid var(--clr-border) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    z-index: 100 !important;
}

.iti__country {
    padding: 10px 15px !important;
    font-family: var(--ff-base);
}

.iti__country:hover {
    background-color: #f8fdf4 !important;
}

.iti__selected-dial-code {
    font-family: var(--ff-base);
    font-weight: 500;
}