/* 1. Import the full fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Poppins:wght@600&display=swap');

:root {
    --radius: .75rem;
    --brand-green: oklch(42% .09 145);
    --brand-green-dark: oklch(32% .07 145);
    --brand-gold: oklch(74% .12 80);
    --brand-earth: oklch(96% .015 80);
    --brand-charcoal: oklch(24% .02 250);
    
    /* UI mappings */
    --background: oklch(100% 0 0);
    --foreground: var(--brand-charcoal);
    --card: oklch(100% 0 0);
    --card-foreground: var(--brand-charcoal);
    --popover: oklch(100% 0 0);
    --popover-foreground: var(--brand-charcoal);
    --primary: var(--brand-green);
    --primary-foreground: oklch(100% 0 0);
    --secondary: var(--brand-earth);
    --secondary-foreground: var(--brand-charcoal);
    --muted: oklch(97% .005 80);
    --muted-foreground: oklch(45% .02 250);
    --accent: var(--brand-gold);
    --accent-foreground: oklch(20% .02 80);
    --destructive: oklch(57.7% .245 27.325);
    --destructive-foreground: oklch(100% 0 0);
    --border: oklch(92% .005 250);
    --input: oklch(94% .005 250);
    --ring: var(--brand-green);
}

/* 0. Global Box-Sizing Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
/* Prevent horizontal overflow on the entire page */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* 3. Apply Inter to the whole document by default */
body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    margin: 0;
    padding-top: 80px;
}

/* 4. Override headers to use Poppins */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--brand-charcoal);
    margin-top: 0;
}

/* =========================================
   REUSABLE BUTTON CLASSES
   (Use these anywhere on your site)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.85rem 1.35rem;
    border-radius: 8px; /* Slightly rounded rectangle, unlike the pill nav-btn */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px); /* Pushes arrow to the right on hover */
}

/* Primary Button (Dark Green) */
.btn-primary {
    background-color: var(--brand-green-dark);
    color: var(--primary-foreground);
    border: 1px solid var(--brand-green-dark);
}

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

/* Outline Button (White w/ Grey Border) */
.btn-outline {
    background-color: var(--background);
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--brand-earth);
    border-color: var(--muted-foreground);
}
.btn-dark {
    background-color: rgba(255, 255, 255, 0.1); /* 10% white for a frosted glass look */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.15); /* Brightens slightly on hover */
    border-color: rgba(255, 255, 255, 0.2);
}

/* Reusing a similar badge style, but centralized */
.section-badge {
    display: inline-block;
    background-color: var(--background);
    color: var(--brand-green-dark);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 3rem;
    color: var(--brand-charcoal);
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}
.section-tight {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
/* =========================================
   PAGE: HEADER SECTION
   ========================================= */
.header-section {
    padding: 5rem 5% 4rem; 
    background-color: var(--background); 
}

.header-container {
    max-width: 1200px; /* Widened to match your site's overall layout */
    margin: 0 auto;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Forces the badge, title, and text to the left edge */
    max-width: 800px; /* Keeps the text from stretching too wide on large screens */
}

.header-badge {
    display: inline-block;
    background-color: var(--brand-earth); 
    color: var(--brand-green);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.header-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--brand-charcoal);
    margin-top: 0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.header-description {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
    max-width: 100%; /* Allows it to fill the 800px content wrapper */
}
/* =========================================
   REUSABLE SPLIT LAYOUT COMPONENT
   ========================================= */
.split-section {
    padding: 5rem 5%;
    background-color: var(--background);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-direction: row;
}
.split-reverse .split-container {
    flex-direction: row-reverse;
}
/* Default: Image on Right */
.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Modifier: Image on Left */
.split-reverse .split-visual {
    justify-content: flex-start;
}

/* Image Styling */
.split-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

/* Typography (Reusing your existing design system) */
.split-badge {
    display: inline-block;
    background-color: var(--brand-earth);
    color: var(--brand-green-dark);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.split-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--brand-charcoal);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.split-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
/* Icon Box */
.split-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--brand-gold); /* Light green background */
    color: var(--brand-green); /* Dark green icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.split-icon-box svg {
    width: 24px;
    height: 24px;
}

/* Checklist Styling */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.checkmark-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.checkmark-list li svg {
    width: 18px;
    height: 18px;
    color: var(--brand-green); /* Green checkmark */
    flex-shrink: 0;
}

/* NAVIGATION BAR  */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    
    /* --- NEW FIXED POSITIONING --- */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Keeps the navbar above all other page content */
}

/* --- Brand/Logo --- */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* --- Navigation Links List --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0 auto;
    padding: 0;
}

/* --- Individual Links --- */
.nav-links a {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.25rem;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

/* Hover & Active state for links */
.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-green);
    border-bottom: 2px solid var(--brand-green);
}

/* --- Call to Action Button --- */
.nav-btn {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem; /* Increased from 0.85rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 9999px; 
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

/* --- Desktop Layout Adjustments --- */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
}

/* --- Hamburger Icon Base Styling --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--brand-charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =========================================
   FULL SCREEN HERO SLIDER
   ========================================= */
.hero-section.full-bg-slider {
    position: relative;
    padding: 5rem 5% 5rem;
    min-height: 90vh; 
    display: flex;
    align-items: center; /* Centers the content vertically */
    background-color: var(--brand-charcoal);
    overflow: hidden;
}

/* --- The Slider Wrapper & Overlay --- */
.hero-slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    /* Uniform dark overlay ensures white centered text is readable everywhere */
    background: rgba(15, 23, 42, 0.65); 
    z-index: 2;
}

/* --- Highly Optimized Image Animation --- */
.bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    
    /* 1. Starting state: Zoomed in and shifted slightly right */
    transform: scale(1.15) translateX(3%);
    
    /* 2. IMPORTANT: Only transition opacity when resetting, so it snaps back to zoomed-in instantly while invisible */
    transition: opacity 1.5s ease-in-out;
    will-change: transform, opacity;
}

/* Active State: Slowly zooms out over 8 seconds */
.bg-slide.active {
    opacity: 1;
    z-index: 1;
    
    /* End state: Fully zoomed out to normal size and centered */
    transform: scale(1) translateX(0);
    
    /* 3. Fade in over 1.5s, but zoom out slowly over 8s (longer than the 6s JS interval!) */
    transition: opacity 1.5s ease-in-out, transform 8s linear;
}

/* Exit State: Continues zooming while fading out smoothly */
.bg-slide.exit {
    opacity: 0;
    z-index: 1;
    
    /* Keep the target exactly the same as .active so the movement doesn't jerk or stop */
    transform: scale(1) translateX(0);
    transition: opacity 1.5s ease-in-out, transform 8s linear;
}

/* --- Foreground Content Layout --- */
.hero-container.slider-content {
    position: relative;
    z-index: 3;
    max-width: 950px; /* Tighter max-width keeps centered text highly readable */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Main Text Content on the Left */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the badge and buttons */
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background-color: var(--brand-earth);
    color: var(--brand-green-dark);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 4rem;
    line-height: 1.1;
    color: #ffffff; /* Forced white for dark background */
    margin-top: 0;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.highlight-green {
    color: var(--brand-gold);
}

.hero-description {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Forced off-white for dark background */
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}
.full-bg-slider .hero-title {
    color: #ffffff;
}

.full-bg-slider .hero-description {
    color: rgba(255, 255, 255, 0.85);
    margin-left: auto;
    margin-right: auto; /* Ensures the description paragraph is perfectly centered */
}

/* Center the buttons */
.full-bg-slider .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* =========================================
   WHAT WE DO (SERVICES) SECTION
   ========================================= */
.services-section {
    padding: 5rem 5%;
    background-color: var(--brand-earth);
}

.services-container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Desktop */
    gap: 1.5rem;
}

/* --- Service Card (Default State) --- */
.service-card {
    background-color: var(--background); /* Solid white inside */
    border: 1px solid var(--border); /* Light grey border */
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease; /* Smooth transition for the hover effect */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--brand-earth); /* Light green box */
    color: var(--brand-green-dark); /* Dark green icon */
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.1rem;
    color: var(--brand-charcoal);
    margin: 0 0 0.75rem 0;
}

.service-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* --- Service Card (Hover State - As seen on 'Beekeeping') --- */
.service-card:hover {
    border-color: var(--brand-green); /* Outline turns green */
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.1); /* Floating drop shadow */
    transform: translateY(-5px); /* Slightly moves up */
}

.service-card:hover .service-icon {
    background-color: var(--brand-green-dark); /* Box fills with solid green */
    color: var(--primary-foreground); /* Icon turns white */
}
.service-link {
    display: inline-flex;
    align-items: center; /* Ensures text and SVG are perfectly centered */
    text-decoration: none; /* Removes underline */
    color: var(--brand-green); /* Brand green */
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    transition: opacity 0.2s ease;
}

.service-link:hover {
    opacity: 0.8; /* Subtle hover effect */
}

/* Arrow SVG inside the link */
.service-link .link-arrow {
    width: 16px;
    height: 16px;
    margin-left: 8px; /* Adds space between text and arrow */
    stroke: currentColor;
}
/* =========================================
   SERVICES INFO SECTION
   ========================================= */
.info-section {
    padding: 6rem 5%;
    background-color: var(--brand-earth);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--brand-earth); /* Light earth background */
    color: var(--brand-gold);      /* Dark green icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Styled List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

/* Green dot style */
.service-list li::before {
    content: "•";
    color: var(--brand-green);
    margin-right: 0.75rem;
    font-size: 1.5rem;
    line-height: 1;
}

/* =========================================
   FEATURED SERVICES (IMAGE CARDS)
   ========================================= */
.featured-services-section {
    padding: 3rem 5% 5rem;
    background-color: var(--background);
}

.featured-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* --- The Card Container --- */
.featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */
    min-height: 450px;
    border-radius: 1.5rem; /* Large rounded corners */
    overflow: hidden; /* Keeps the image and overlay inside the rounded corners */
    text-decoration: none;
    padding: 3rem;
}

/* --- Background Image --- */
.featured-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease; /* Optional: adds a slight zoom on hover */
}

/* --- Color Overlays --- */
.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.4s ease; /* The smooth fade out transition */
}

/* Custom gradients based on the design */
.overlay-green {
    /* Dark green gradient that matches the image */
    background: linear-gradient(to top, rgba(22, 60, 35, 0.95) 0%, rgba(22, 60, 35, 0.5) 50%, rgba(22, 60, 35, 0.2) 100%);
}

.overlay-charcoal {
    /* Dark charcoal gradient */
    background: linear-gradient(to top, rgba(25, 30, 35, 0.95) 0%, rgba(25, 30, 35, 0.6) 50%, rgba(25, 30, 35, 0.2) 100%);
}

/* --- Card Content --- */
.featured-content {
    position: relative;
    z-index: 3; /* Keeps text above the image and overlay */
}

.featured-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px); /* Frosty glass effect on the icon box */
}

.featured-icon svg {
    width: 24px;
    height: 24px;
}

/* Icon specific colors */
.icon-green {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.icon-gold {
    background-color: rgba(217, 160, 91, 0.2); /* Translucent brand gold */
    color: var(--brand-gold);
}

/* Text Styling */
.featured-content h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2rem;
    color: oklch(100% 0 0); /* Pure White */
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.featured-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 90%;
}

/* Links */
.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.featured-link svg {
    width: 16px;
    height: 16px;
}

.link-white {
    color: #fff;
}

.link-gold {
    color: var(--brand-gold);
}

/* --- HOVER EFFECTS --- */
.featured-card:hover .featured-overlay {
    opacity: 0; /* Smoothly disappears */
}

.featured-card:hover .featured-bg-img {
    transform: scale(1.05); /* Slight image zoom when overlay disappears */
}

.featured-card:hover .featured-link {
    gap: 0.75rem; /* Arrow pushes slightly to the right */
}

/* Add a permanent bottom shadow so text remains readable even when overlay disappears */
.featured-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   WHY AMBUGO AFRICA SECTION
   ========================================= */
.why-us-section {
    padding: 5rem 5%;
    background-color: var(--brand-earth); /* Solid white background */
}

.why-us-container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

/* --- Values Grid (3 Columns) --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* --- Value Card Styling --- */
.value-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: rgba(217, 160, 91, 0.4); /* Subtle gold border on hover */
    transform: translateY(-3px);
}

/* --- Soft Gold Icon Box --- */
.value-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(217, 160, 91, 0.15); /* 15% opacity of brand-gold */
    color: var(--brand-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 20px;
    height: 20px;
}

/* --- Text Styling --- */
.value-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.1rem;
    color: var(--brand-charcoal);
    margin: 0 0 0.75rem 0;
}

.value-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--background);
}

.testimonials-container {
    max-width: 900px; /* Kept slightly narrower for readability */
    margin: 0 auto;
    width: 100%;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- The Card --- */
.testimonial-card {
    background-color: var(--brand-earth); /* The soft off-white background */
    border-radius: 1.5rem;
    padding: 5rem 4rem;
    text-align: center;
    width: 100%;
    /* Setup for the JS fade animation */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* --- Slide Animations --- */
/* Slides out to the left when clicking 'Next' */
.testimonial-card.slide-out-left {
    opacity: 0;
    transform: translateX(-50px);
}

/* Snaps instantly to the right (invisible) before sliding in */
.testimonial-card.prep-right {
    transition: none; /* Disables animation so it jumps instantly */
    opacity: 0;
    transform: translateX(50px);
}

/* Slides out to the right when clicking 'Previous' */
.testimonial-card.slide-out-right {
    opacity: 0;
    transform: translateX(50px);
}

/* Snaps instantly to the left (invisible) before sliding in */
.testimonial-card.prep-left {
    transition: none;
    opacity: 0;
    transform: translateX(-50px);
}

.testimonial-quote {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--brand-charcoal);
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.testimonial-author {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* --- Slider Controls --- */
.testimonial-controls {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand-charcoal);
    transition: all 0.2s ease;
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

.control-btn:hover {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--primary-foreground); /* Icon turns white */
}
/* =========================================
   CTA SECTION STYLES
   ========================================= */
.cta-section {
    padding: 2rem 5% 5rem; /* Less top padding so it sits nicely below testimonials */
    background-color: var(--background);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--brand-charcoal); /* Dark theme base */
    border-radius: 2rem;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Adds a very subtle soft glow around the dark box */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.cta-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 3.25rem;
    color: oklch(100% 0 0); /* Pure White */
    margin: 0 0 1.25rem 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75); /* Soft off-white for readability */
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

/* =========================================
   AGRI CTA SECTION
   ========================================= */
.agri-cta-section {
    padding: 3rem 5%; /* Reduced from 4rem */
    background-color: var(--brand-green);
    text-align: center;
}

.agri-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.agri-cta-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.25rem; /* Reduced from 3rem */
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem; /* Tightened spacing */
}

.agri-cta-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem; /* Slightly smaller for better flow */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem; /* Reduced from 2.5rem */
    line-height: 1.6;
}

.btn-agri-cta {
    display: inline-block;
    background-color: #ffffff;
    color: var(--brand-green);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-agri-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================
   WHO WE ARE SECTION
   ========================================= */
.who-we-are-section {
    padding: 4rem 5%;
    background-color: var(--background); /* Solid white background */
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    gap: 5rem;
    align-items: center; /* Centers the text vertically next to the image */
}

/* --- Left Column: Content --- */
.who-we-are-content {
    max-width: 550px;
}

.who-we-are-badge {
    display: inline-block;
    background-color: var(--brand-earth); /* Light green background */
    color: var(--brand-green-dark);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.who-we-are-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--brand-charcoal);
    margin-top: 0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.who-we-are-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.who-we-are-desc:last-child {
    margin-bottom: 0;
}

/* --- Right Column: Image --- */
.who-we-are-visual {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.who-we-are-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 4/5; /* Keeps the tall portrait proportion */
    object-fit: cover;
    border-radius: 1.5rem; /* Large rounded corners matching your design system */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* =========================================
   MISSION & VISION SECTION
   ========================================= */
.mv-section {
    padding: 2rem 5% 6rem; /* Standard section padding */
    background-color: var(--brand-earth);
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Column layout */
    gap: 2rem;
}

.mv-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

/* Icon box styling (reused from your design system) */
.mv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon svg {
    width: 24px;
    height: 24px;
}

/* Icon Colors */
.icon-green {
    background-color: rgba(46, 125, 50, 0.1); /* Subtle green background */
    color: var(--brand-green);
}

.icon-gold {
    background-color: rgba(217, 160, 91, 0.15); /* Subtle gold background */
    color: var(--brand-gold);
}

.mv-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.5rem;
    color: var(--brand-charcoal);
    margin: 0 0 1rem 0;
}

.mv-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-section {
    padding: 6rem 5%;
    background-color: var(--background);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card Styling */
.team-card {
    background-color: #ffffff;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Image Top Area */
.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #f4f3ed; /* Fallback matching your screenshot placeholder */
}

/* Content Area */
.team-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-role {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.35rem;
    color: var(--brand-charcoal);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.team-dept {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: #d99335; /* Golden/orange from screenshot */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.team-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Social Links at Bottom */
.team-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: auto; /* Pushes socials to the bottom to align them if descriptions vary */
}

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-charcoal);
    transition: all 0.2s ease;
}

.team-social-link svg {
    width: 18px;
    height: 18px;
}

.team-social-link:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background-color: rgba(var(--brand-green-rgb), 0.05); /* Optional subtle tint on hover */
}

/* =========================================
   IMPACT FOCUS SECTION
   ========================================= */
.impact-section {
    padding: 6rem 5%;
    background-color: var(--brand-green); /* Using the primary brand green */
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Text (White for contrast) */
.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impact-badge {
    display: inline-block;
    background-color: var(--brand-earth); /* Matches the image badge style */
    color: var(--brand-gold);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.impact-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 3rem;
    color: #ffffff;
    margin: 0;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 1.5rem;
}

.impact-card {
    background-color: rgba(255, 255, 255, 0.08); /* Muted semi-transparent green */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: background-color 0.3s ease;
}

.impact-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.impact-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15); /* Light translucent box */
    color: var(--brand-gold); /* Gold color for icon */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.impact-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   CLEANING SECTION
   ========================================= */
.cleaning-section {
    padding: 4rem 5%;
    background-color: var(--background);
}

.cleaning-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grids */
.cleaning-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cleaning-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Cards */
.cleaning-card, .cleaning-card-small {
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 1.5rem;
}

.cleaning-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.cleaning-content {
    padding: 0 0.5rem;
}

.cleaning-icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--brand-earth);
    color: var(--brand-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cleaning-icon-box svg { width: 22px; height: 22px; }

.cleaning-card h3, .cleaning-card-small h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    color: var(--brand-green);
    margin: 0 0 1rem 0;
}

.cleaning-card p, .cleaning-card-small p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Checklists */
.cleaning-list {
    list-style: none;
    padding: 0;
}

.cleaning-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cleaning-list li svg {
    width: 16px;
    height: 16px;
    color: var(--brand-green);
    flex-shrink: 0;
}
/* Container for the CTA buttons */
.clening-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Base styling for both buttons */
.btn-clean-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* SVG sizes and spacing */
.btn-clean-cta svg {
    width: 18px;
    height: 18px;
}
.cta-icon-right { margin-left: 8px; }
.cta-icon-left { margin-right: 8px; }
/* =========================================
   BUTTON 1: SOLID (Inverts to Outline)
   ========================================= */
.btn-clean-solid {
    background-color: var(--brand-gold);
    border: 2px solid var(--brand-gold); /* Both share the same border color */
    color: #ffffff;
}

.btn-clean-solid:hover {
    background-color: transparent; /* Becomes transparent */
    color: var(--brand-gold);     /* Text turns green to match border */
}

/* =========================================
   BUTTON 2: OUTLINE (Inverts to Solid)
   ========================================= */
.btn-clean-outline {
    background-color: transparent;
    border: 2px solid var(--brand-gold); /* Both share the same border color */
    color: var(--background);
}

.btn-clean-outline:hover {
    background-color: var(--brand-gold); /* Fills with green */
    color: #ffffff;                       /* Text turns white */
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: 5rem 5%;
    background-color: var(--brand-earth); /* Light off-white background */
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-badge {
    display: inline-block;
    background-color: var(--background);
    color: var(--brand-green-dark);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.process-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.75rem;
    color: var(--brand-charcoal);
    margin: 0;
}

/* Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 1.5rem;
}

/* Individual Process Card */
.process-card {
    background-color: #ffffff;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Typography Inside Card */
.process-number {
    display: block;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-gold, #d99335); /* Golden/earthy orange color */
    margin-bottom: 1rem;
    line-height: 1;
}

.process-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    color: var(--brand-charcoal);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.process-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    padding: 4rem 5%;
    background-color: var(--background);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background-color: #e5e7eb;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay with Expand Icon */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(var(--brand-green-rgb), 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
    transform: scale(1);
}

/* =========================================
   LIGHTBOX MODAL
   ========================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.95); /* Dark slate overlay */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.lightbox-close:hover { color: var(--brand-green); }

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh; /* Leaves room for controls */
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Controls Below Image */
.lightbox-controls {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.lightbox-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-btn svg {
    width: 24px;
    height: 24px;
}

.lightbox-btn:hover {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    transform: scale(1.05);
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
    padding: 2rem 5% 6rem 5%;
    background-color: var(--background, #ffffff);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Category Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.blog-filter-btn {
    background-color: #f4f3ed; /* Very light beige/earth */
    border: 1px solid transparent;
    color: var(--brand-charcoal);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-filter-btn:hover {
    background-color: #e5e3db;
}

.blog-filter-btn.active {
    background-color: var(--brand-green-dark, #2b4c3b);
    color: #ffffff;
}

/* =========================================
   HIGHLIGHT CARD (Top Large Post)
   ========================================= */
.blog-highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fcfbf8; /* Extremely subtle off-white to contrast */
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.blog-highlight-img-box {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

.blog-highlight-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-highlight-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.25rem;
    color: var(--brand-charcoal);
    line-height: 1.2;
    margin: 1rem 0 1.5rem 0;
}

.blog-highlight-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* =========================================
   BLOG GRID (Bottom 3 Posts)
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: #ffffff;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.blog-card-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    color: var(--brand-charcoal);
    line-height: 1.3;
    margin: 1rem 0;
}

.blog-card-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* =========================================
   SHARED TYPOGRAPHY & LINKS
   ========================================= */
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-meta-dot {
    color: #9ca3af; /* Gray dot */
}

/* Text Colors for Meta Tags */
.brand-green { color: var(--brand-green); }
.brand-gold { color: #d99335; }
.brand-muted { color: #6b7280; }

/* Read Links */
.blog-read-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.blog-read-link:hover {
    opacity: 0.7;
}

.blog-read-link svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    stroke: currentColor;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 4rem 5% 5rem 5%;
    background-color: var(--background, #ffffff);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info takes ~40%, Form takes ~60% */
    gap: 3rem;
    align-items: start;
}

/* =========================================
   LEFT: CONTACT INFO CARDS
   ========================================= */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    background-color: #fcfbf8; /* Light warm off-white */
    padding: 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

a.contact-info-card:hover {
    transform: translateY(-2px);
    background-color: #f4f3ed;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background-color: #d99335; /* Gold Background as requested */
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

.contact-icon-box svg {
    width: 22px;
    height: 22px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
}

.contact-info-val {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-charcoal);
}

/* =========================================
   RIGHT: CONTACT FORM
   ========================================= */
.contact-form {
    background-color: #ffffff;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 1.5rem;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.form-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.75rem;
    color: var(--brand-charcoal);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Inputs, Selects, Textareas */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: #fcfbf8;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1rem;
    color: var(--brand-charcoal);
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand-green);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--brand-green-rgb), 0.1);
}

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

/* Custom Select Dropdown Arrow */
.custom-select-wrapper {
    position: relative;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 3rem;
}

.custom-select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--brand-charcoal);
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: var(--brand-green-dark, #2b4c3b);
    color: #ffffff;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1.2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.btn-submit:hover {
    background-color: var(--brand-green, #3a6850);
    transform: translateY(-2px);
}

/* FOOTER  */
/* --- FOOTER CONTAINER --- */
.site-footer {
    background-color: var(--brand-earth); /* The light off-white background */
    padding: 4rem 5% 2rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--foreground);
    border-top: 1px solid var(--border);
}

/* --- FOOTER TOP GRID --- */
.footer-top {
    display: grid;
    /* Desktop: 4 Columns (Brand column slightly wider) */
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr; 
    gap: 3rem;
    margin-bottom: 4rem;
}

/* --- Column 1: Brand & Desc --- */
.footer-logo-img {
    height: 60px; /* Adjust to match your image size */
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

/* Social Media Circles */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--foreground);
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--primary-foreground);
}

/* --- Standard Footer Columns (Links) --- */
.footer-col h4 {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-green);
}

/* --- Column 4: Contact Info --- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0; /* Prevents icons from squishing */
}

/* --- FOOTER BOTTOM BAR --- */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-links {
    display: flex;
}

.legal-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--brand-green);
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Ensures it always stays on top */
    transition: transform 0.3s ease;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: translateY(-5px); /* Bounces up slightly on hover */
}

/* --- The Pulse Animation Setup --- */
.whatsapp-float::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite ease-in-out;
}

/* --- The Keyframes for the Pulse --- */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Mobile Breakpoint (Screens smaller than 1024px) --- */
@media (max-width: 1024px) {
    /* NAVBAR  */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start; 
        padding: 2rem 5%;
        
        /* Reduce gap slightly on mobile so it isn't so stretched */
        gap: 1.5rem; 
        
        /* --- ADD THESE TWO LINES --- */
        max-height: calc(100vh - 70px); /* Viewport height minus the navbar height */
        overflow-y: auto; /* Allows you to scroll inside the menu if it's too long */
        
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px); 
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        
        /* Reduce the gap between individual links */
        gap: 1rem;
        margin: 0;
    }

    .nav-btn {
        width: 100%;
        max-width: 300px;
        align-self: center;
    }

    /* JavaScript Toggle Class */
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Animate the hamburger into an 'X' */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* HERO SECTION  */
    .hero-container.slider-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .slider-overlay {
        background: rgba(15, 23, 42, 0.75); /* Solid dark tint for mobile readability */
    }

    /* WHAT WE DO  */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .featured-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-card {
        min-height: 400px;
        padding: 2rem;
    }

    .featured-content h3 {
        font-size: 1.75rem;
    }

    .featured-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* WHY US  */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* WHO WE ARE  */
    .who-we-are-container {
        grid-template-columns: 1fr; /* Stacks to a single column */
        gap: 4rem;
    }

    .who-we-are-content {
        max-width: 100%;
    }

    .who-we-are-visual {
        justify-content: center;
    }

    .who-we-are-img {
        max-width: 100%;
        aspect-ratio: 16/9; /* Switches to a wider landscape view on smaller screens */
    }
    /* IMPACT  */
    .impact-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cols */
    }
    /* SPLIT SECTION  */
    .split-container {
        flex-direction: column-reverse !important; 
        gap: 2rem;
    }
    
    .split-visual {
        justify-content: center !important;
        width: 100%;
    }
    
    .split-img {
        max-width: 100%;
    }
    .cleaning-grid-small { grid-template-columns: 1fr 1fr; }
    .process-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
    /* FOOTER  */
    .footer-top {
        grid-template-columns: 1fr 1fr; 
    }
}

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

    .blog-highlight-card {
        grid-template-columns: 1fr;
    }
    
    .blog-highlight-img-box {
        min-height: 300px;
    }
    
    .blog-highlight-content {
        padding: 3rem 2rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    .hero-container.slider-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .slider-overlay {
        background: rgba(15, 23, 42, 0.75); /* Solid dark tint for mobile */
    }
}

@media (max-width: 768px) {
    /* HERO SECTION  */
    .hero-container.slider-content {
        align-items: flex-start;
        text-align: left;
    }
    .hero-content {
        align-items: flex-start;
    }
    .full-bg-slider .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
    .hero-section.full-bg-slider {
        padding: 5rem 5% 4rem; /* Adjusted for mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .floating-stat-card.bottom-right-stat {
        width: 100%;
        text-align: center;
        margin-bottom: 0; /* Reset margin for mobile stack */
    }

    /* WHY US  */
    .why-us-section {
        padding: 2rem 5%;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    /* TESTIMONIAL  */
    .testimonial-card {
        padding: 3rem 2rem;
    }
    .testimonial-quote {
        font-size: 1.25rem;
    }
    /* CTA  */
    .cta-container {
        padding: 4rem 1.5rem;
        border-radius: 1.5rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .agri-cta-section {
        padding: 2rem 5%; /* Kept but tighter feel due to smaller text */
    }
    
    .agri-cta-title {
        font-size: 1.75rem; /* Reduced from 2.25rem for mobile */
    }
    /* ABOUT PAGE  */
    .header-section {
        padding: 4rem 5% 2rem; 
    }

    .header-title {
        font-size: 2.5rem; 
    }

    .header-description {
        font-size: 1rem;
    }

    /* WHO WE ARE   */
    .who-we-are-section {
        padding: 4rem 5%;
    }

    .who-we-are-title {
        font-size: 2.25rem;
    }

    .who-we-are-img {
        aspect-ratio: 4/3; /* Adjusts ratio for mobile displays */
        border-radius: 1rem;
    }

    /* MV SECTION  */
    .mv-container {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .mv-card {
        padding: 2.5rem;
    }
    /* TEAM SECTION  */
    .team-section {
        padding: 4rem 5%;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    /* IMPACT  */
    .impact-section {
        padding: 4rem 5%;
    }
    
    .impact-title {
        font-size: 2.25rem;
    }

    .impact-grid {
        grid-template-columns: 1fr; /* Mobile: 1 col */
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 2rem;
    }
    .cleaning-grid-large, .cleaning-grid-small {
        grid-template-columns: 1fr;
    }
    .process-section {
        padding: 4rem 5%;
    }

    .process-title {
        font-size: 2.25rem;
    }

    .process-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-highlight-title {
        font-size: 1.75rem;
    }
    /* FOOTER  */
    .site-footer {
        padding: 3rem 5% 1.5rem;
    }
    
    .footer-top {
        /* Mobile: 1 Column stacked */
        grid-template-columns: 1fr; 
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    /* WHAT WE DO */
    .services-section {
        padding: 4rem 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .clening-cta-btn {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-clean-cta {
        width: 100%;
    }
}