/* ===== ROOT VARIABLES ===== */
:root {
    --forest-green: #0B3D2E;
    --dark-green: #082C22;
    --emerald: #145A43;
    --emerald-light: #1B6B53;
    --gold: #C9A227;
    --soft-gold: #D8B84C;
    --light-gold: #E8D58A;
    --off-white: #F8F7F2;
    --cream: #F3EFE3;
    --charcoal: #17201C;
    --white: #FFFFFF;
    --gray-100: #EDEDEA;
    --gray-200: #DDDAD2;
    --gray-300: #C4C2B8;
    --gray-500: #8A8B83;
    --gray-700: #4A4F48;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(11, 61, 46, 0.08);
    --shadow-md: 0 8px 30px rgba(11, 61, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 61, 46, 0.18);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 100px 0;
    --container-max: 1280px;
    --container-padding: 0 24px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--forest-green);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--forest-green);
}

.section-dark-green {
    background: var(--dark-green);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

    .section-label::before {
        content: '';
        width: 30px;
        height: 2px;
        background: var(--gold);
        display: inline-block;
    }

    .section-label.center {
        justify-content: center;
    }

        .section-label.center::after {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--gold);
            display: inline-block;
        }

    .section-label.light {
        color: var(--light-gold);
    }

.section-title {
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin-bottom: 3rem;
}

.section-dark .section-title,
.section-dark-green .section-title {
    color: var(--white);
}

.section-dark .section-subtitle,
.section-dark-green .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.section-dark p, .section-dark-green p {
    color: rgba(255,255,255,0.75);
}

.text-center {
    text-align: center;
}

    .text-center .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

.gold-text {
    color: var(--gold);
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border: none;
    border-radius: 2px;
    margin: 20px 0;
}

    .gold-divider.center {
        margin-left: auto;
        margin-right: auto;
    }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

    .btn i {
        font-size: 0.85em;
    }

.btn-gold {
    background: var(--gold);
    color: var(--dark-green);
    border-color: var(--gold);
}

    .btn-gold:hover {
        background: var(--soft-gold);
        border-color: var(--soft-gold);
        transform: translateY(-2px);
        box-shadow: var(--shadow-gold);
    }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--dark-green);
        transform: translateY(-2px);
    }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

    .btn-outline-light:hover {
        background: var(--white);
        color: var(--forest-green);
        border-color: var(--white);
        transform: translateY(-2px);
    }

.btn-dark {
    background: var(--forest-green);
    color: var(--white);
    border-color: var(--forest-green);
}

    .btn-dark:hover {
        background: var(--dark-green);
        border-color: var(--dark-green);
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

    .navbar.scrolled {
        background: var(--dark-green);
        padding: 12px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.nav-brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark-green);
    flex-shrink: 0;
}

.nav-brand-text {
    line-height: 1.2;
}

.nav-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.nav-brand-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

    .nav-menu a {
        color: rgba(255,255,255,0.85);
        font-size: 0.9rem;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 6px;
        position: relative;
        transition: color var(--transition);
    }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--gold);
        }

            .nav-menu a:hover::after,
            .nav-menu a.active::after {
                transform: scaleX(1);
            }

.nav-cta {
    margin-left: 12px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,44,34,0.85) 0%, rgba(11,61,46,0.7) 50%, rgba(8,44,34,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 80px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--light-gold);
    margin-bottom: 24px;
}

    .hero-label::before {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--gold);
    }

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    animation: bounce 2s infinite;
}

    .scroll-indicator i {
        display: block;
        font-size: 1.2rem;
        margin-top: 6px;
    }

/* Inner page hero */
.inner-hero {
    position: relative;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,44,34,0.9) 0%, rgba(11,61,46,0.8) 100%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.inner-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

    .breadcrumb a {
        color: var(--light-gold);
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.4);
    }

/* ===== ABOUT SECTION ===== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

    .about-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-img-overlay {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

    .about-img-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-img-border {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
    pointer-events: none;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.section-dark .stat-label,
.section-dark-green .stat-label {
    color: rgba(255,255,255,0.65);
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.product-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--dark-green);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-body {
    padding: 22px;
}

.product-category {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .product-link:hover {
        color: var(--gold);
        gap: 10px;
    }

/* ===== SOLUTIONS ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all var(--transition);
}

.solution-card:hover .solution-icon {
    background: var(--gold);
    color: var(--dark-green);
    transform: rotateY(180deg);
}

.solution-card h4 {
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.solution-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .solution-link:hover {
        color: var(--gold);
    }

/* ===== SUSTAINABILITY ===== */
.sustain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sustain-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    transition: all var(--transition);
}

    .sustain-item:hover {
        background: rgba(201,162,39,0.08);
        border-color: var(--gold);
        transform: translateY(-4px);
    }

.sustain-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.sustain-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sustain-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.progress-row {
    margin-top: 50px;
}

.progress-item {
    margin-bottom: 28px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--soft-gold));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
}

/* ===== FARMS ===== */
.farms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.farm-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

    .farm-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.farm-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

    .farm-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

.farm-card:hover .farm-img img {
    transform: scale(1.06);
}

.farm-body {
    padding: 24px;
}

.farm-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.farm-name {
    margin-bottom: 12px;
}

.farm-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

    .farm-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

.farm-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .farm-link:hover {
        color: var(--gold);
    }

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

    .why-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    transition: all var(--transition);
}

.why-item:hover .why-icon {
    background: var(--gold);
    color: var(--dark-green);
}

.why-item h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.why-item p {
    font-size: 0.88rem;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--forest-green);
    font-size: 1.05rem;
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

    .testimonial-dot.active {
        background: var(--gold);
        width: 28px;
        border-radius: 5px;
    }

/* ===== INSIGHTS / BLOG CARDS ===== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.blog-category {
    background: var(--cream);
    color: var(--gold);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date {
    color: var(--gray-500);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .blog-link:hover {
        color: var(--gold);
    }

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,44,34,0.92), rgba(11,61,46,0.88));
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
}

.cta-banner .hero-buttons {
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-green);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .nav-brand {
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 0.95rem;
        transition: all var(--transition);
    }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--dark-green);
            transform: translateY(-3px);
        }

.footer-col h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

    .footer-col ul li a {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.6);
        transition: color var(--transition);
    }

        .footer-col ul li a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

    .footer-contact li i {
        color: var(--gold);
        margin-top: 4px;
        flex-shrink: 0;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,0.5);
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--dark-green);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top:hover {
        background: var(--soft-gold);
        transform: translateY(-4px);
    }

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    border-left: 4px solid var(--gold);
    animation: slideInRight 0.4s ease;
}

    .toast.success {
        border-left-color: #2D9B6F;
    }

    .toast.error {
        border-left-color: #D94545;
    }

.toast-icon {
    font-size: 1.3rem;
}

.toast.success .toast-icon {
    color: #2D9B6F;
}

.toast.error .toast-icon {
    color: #D94545;
}

.toast-msg {
    font-size: 0.9rem;
    color: var(--charcoal);
}

.toast.removing {
    animation: slideOutRight 0.4s ease forwards;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--gray-200);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: capitalize;
}

    .filter-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .filter-btn.active {
        background: var(--forest-green);
        border-color: var(--forest-green);
        color: var(--white);
    }

/* ===== SEARCH BAR ===== */
.search-bar {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

    .search-bar input {
        width: 100%;
        padding: 14px 20px 14px 50px;
        border: 2px solid var(--gray-200);
        border-radius: 30px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--charcoal);
        background: var(--white);
        transition: border-color var(--transition);
    }

        .search-bar input:focus {
            outline: none;
            border-color: var(--gold);
        }

    .search-bar i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-500);
        font-size: 1rem;
    }

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--gold);
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px 0;
}

    .timeline-item:nth-child(even) {
        left: 50%;
        padding: 0 0 40px 40px;
    }

    .timeline-item:nth-child(even) {
        text-align: right;
    }

.timeline-dot {
    position: absolute;
    right: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
    right: auto;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
}

/* ===== VALUES / FEATURES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    text-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

.team-img {
    aspect-ratio: 1;
    overflow: hidden;
}

    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-body {
    padding: 22px;
}

.team-name {
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

    .team-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: var(--forest-green);
        transition: all var(--transition);
    }

        .team-social a:hover {
            background: var(--gold);
            color: var(--dark-green);
        }

/* ===== ACCORDION / FAQ ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--white);
    transition: border-color var(--transition);
}

    .accordion-item.active {
        border-color: var(--gold);
    }

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

    .accordion-header:hover {
        background: var(--cream);
    }

    .accordion-header i {
        color: var(--gold);
        transition: transform var(--transition);
    }

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 24px 20px;
}

.accordion-body p {
    font-size: 0.92rem;
    margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--forest-green);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    color: var(--white);
}

    .contact-info-card h3 {
        color: var(--white);
        margin-bottom: 30px;
    }

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,162,39,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--forest-green);
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--gray-200);
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 0.92rem;
        color: var(--charcoal);
        background: var(--off-white);
        transition: border-color var(--transition);
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #D94545;
    margin-top: 4px;
    min-height: 16px;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #D94545;
}

/* ===== MAP ===== */
.map-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .map-section iframe {
        width: 100%;
        height: 400px;
        border: 0;
        display: block;
    }

/* ===== PRODUCT DETAILS ===== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}

    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.gallery-thumb {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    aspect-ratio: 1;
    transition: border-color var(--transition);
}

    .gallery-thumb.active {
        border-color: var(--gold);
    }

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.detail-info h1 {
    margin-bottom: 8px;
}

.detail-category {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.detail-info p {
    margin-bottom: 24px;
}

.detail-features {
    margin-bottom: 30px;
}

    .detail-features li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 0.92rem;
        color: var(--gray-700);
    }

        .detail-features li i {
            color: var(--gold);
            margin-top: 3px;
        }

.detail-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.detail-meta-item {
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

    .detail-meta-item h5 {
        font-family: var(--font-body);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--gray-500);
        margin-bottom: 6px;
    }

    .detail-meta-item p {
        font-size: 0.95rem;
        color: var(--forest-green);
        font-weight: 600;
        margin: 0;
    }

/* ===== SOLUTION DETAILS ===== */
.solution-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

    .solution-detail-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

    .feature-item:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-sm);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.86rem;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--forest-green);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
}

/* ===== BLOG DETAILS ===== */
.blog-detail-hero {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    margin: 40px 0;
}

    .blog-detail-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog-detail-content {
    max-width: 760px;
    margin: 0 auto;
}

    .blog-detail-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .blog-detail-content h2 {
        margin: 40px 0 16px;
    }

    .blog-detail-content blockquote {
        border-left: 4px solid var(--gold);
        padding: 16px 24px;
        margin: 30px 0;
        font-style: italic;
        font-size: 1.1rem;
        color: var(--forest-green);
        background: var(--cream);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }

.blog-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin: 40px 0;
}

    .blog-author img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        object-fit: cover;
    }

.blog-author-info h5 {
    font-family: var(--font-heading);
    color: var(--forest-green);
    margin-bottom: 2px;
}

.blog-author-info p {
    font-size: 0.85rem;
    margin: 0;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0;
}

    .blog-share span {
        font-weight: 600;
        color: var(--forest-green);
    }

    .blog-share a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--forest-green);
        transition: all var(--transition);
    }

        .blog-share a:hover {
            background: var(--gold);
            color: var(--dark-green);
        }

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

    .no-results i {
        font-size: 2.5rem;
        color: var(--gray-300);
        margin-bottom: 16px;
    }

    .no-results h4 {
        margin-bottom: 8px;
    }

    .no-results p {
        color: var(--gray-500);
    }

/* ===== PAGE LOADER OVERLAY (simple) ===== */
.fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

/* ===== PREMIUM UPGRADES ===== */

/* Navbar blur + bottom border */
.navbar.scrolled {
    background: rgba(8, 44, 34, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

/* Button arrow slide on hover */
.btn i.fa-arrow-right,
.btn i.fa-chevron-right {
    transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right,
.btn:hover i.fa-chevron-right {
    transform: translateX(4px);
}

/* Solution card numbering */
.solution-card {
    position: relative;
}

.solution-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    transition: color var(--transition);
}

.solution-card:hover .solution-number {
    color: var(--gold);
}

/* Gold hover line for solution links */
.solution-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .solution-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.4s ease;
    }

    .solution-link:hover::after {
        width: 100%;
    }

/* Why choose us numbered layout */
.why-numbered {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-numbered-left h2 {
    margin-bottom: 20px;
}

.why-numbered-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-numbered-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    transition: all var(--transition);
}

.why-numbered-item:hover .why-numbered-circle {
    background: var(--gold);
    color: var(--dark-green);
    transform: scale(1.1);
}

.why-numbered-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.why-numbered-text p {
    font-size: 0.85rem;
    margin: 0;
}

/* Footer gold top border */
.footer {
    border-top: 2px solid var(--gold);
}

/* Farm card overlay */
.farm-card .farm-img {
    position: relative;
}

    .farm-card .farm-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(8,44,34,0.5) 0%, transparent 50%);
        opacity: 0;
        transition: opacity var(--transition);
        pointer-events: none;
    }

.farm-card:hover .farm-img::after {
    opacity: 1;
}

/* CTA decorative gold line */
.cta-banner-content::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Input focus glow */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* Scroll indicator circular */
.scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition);
}

    .scroll-indicator:hover {
        border-color: var(--gold);
    }

.scroll-indicator {
    text-indent: -9999px;
    overflow: hidden;
}

    .scroll-indicator i {
        text-indent: 0;
    }

/* Section divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* Blog detail sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

    .blog-sidebar-card h5 {
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--forest-green);
        margin-bottom: 16px;
    }

.blog-sidebar-search {
    position: relative;
    margin-bottom: 24px;
}

    .blog-sidebar-search input {
        width: 100%;
        padding: 12px 16px 12px 42px;
        border: 2px solid var(--gray-200);
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 0.9rem;
    }

        .blog-sidebar-search input:focus {
            outline: none;
            border-color: var(--gold);
        }

    .blog-sidebar-search i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-500);
    }

.blog-sidebar-cat-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

    .blog-sidebar-cat-list li:last-child {
        border-bottom: none;
    }

.blog-sidebar-cat-list a {
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .blog-sidebar-cat-list a:hover {
        color: var(--gold);
    }

.blog-sidebar-cat-list span {
    color: var(--gray-300);
    font-size: 0.85rem;
}

.blog-sidebar-recent li {
    margin-bottom: 16px;
}

.blog-sidebar-recent a {
    display: flex;
    gap: 12px;
    align-items: center;
}

.blog-sidebar-recent img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-sidebar-recent h6 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 2px;
    line-height: 1.3;
}

.blog-sidebar-recent span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.blog-sidebar-recent a:hover h6 {
    color: var(--gold);
}

.blog-sidebar-newsletter input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

    .blog-sidebar-newsletter input:focus {
        outline: none;
        border-color: var(--gold);
    }

/* Circular progress indicator */
.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}

    .circular-progress svg {
        transform: rotate(-90deg);
    }

.circular-progress-circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.circular-progress-bg {
    stroke: rgba(255,255,255,0.1);
}

.circular-progress-fill {
    stroke: var(--gold);
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.5s ease;
}

.circular-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Alternating solution layout */
.solution-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

    .solution-alt:nth-child(even) .solution-alt-img {
        order: 2;
    }

.solution-alt-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

    .solution-alt-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.solution-alt-content h3 {
    margin-bottom: 16px;
}

.solution-alt-content p {
    margin-bottom: 16px;
}

/* Contact info card hover */
.contact-info-item {
    transition: transform var(--transition);
}

    .contact-info-item:hover {
        transform: translateX(4px);
    }

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

    .footer-newsletter input {
        flex: 1;
        padding: 12px 18px;
        border: 2px solid rgba(201,162,39,0.3);
        border-radius: var(--radius-sm);
        background: rgba(255,255,255,0.05);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 0.88rem;
        transition: all var(--transition);
    }

        .footer-newsletter input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .footer-newsletter input:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
        }

    .footer-newsletter button {
        padding: 12px 24px;
        background: var(--gold);
        color: var(--dark-green);
        border: none;
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all var(--transition);
    }

        .footer-newsletter button:hover {
            background: var(--soft-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(201,162,39,0.3);
        }

            .footer-newsletter button:hover i {
                transform: translateX(3px);
            }

        .footer-newsletter button i {
            transition: transform var(--transition);
        }

        .footer-newsletter button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

/* ===== TOAST CLOSE BUTTON ===== */
.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

    .toast-close:hover {
        color: var(--charcoal);
    }

/* ===== SOLUTION CARD HOVER ENHANCEMENT ===== */
.solution-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

    .solution-card .solution-icon {
        transition: transform 0.4s ease;
    }

    .solution-card:hover .solution-icon {
        transform: scale(1.1) rotate(-5deg);
    }

    .solution-card .solution-link i {
        transition: transform var(--transition);
    }

    .solution-card:hover .solution-link i {
        transform: translateX(5px);
    }

/* ===== BLOG SIDEBAR NEWSLETTER BUTTON ===== */
.blog-sidebar-newsletter button {
    width: 100%;
}

/* ===== RESPONSIVE: FOOTER NEWSLETTER ===== */
@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
    }

        .footer-newsletter input {
            width: 100%;
        }

        .footer-newsletter button {
            width: 100%;
            justify-content: center;
        }
}

/* ===== RESPONSIVE: BLOG LAYOUT ===== */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
    }
}
