/* Modern Biogreen Solutions Design System */

:root {
    /* Color Palette */
    --color-primary: #2d5a27;
    /* Deep Forest Green */
    --color-primary-light: #4CAF50;
    /* Fresh Green */
    --color-secondary: #8bc34a;
    /* Light Green */
    --color-accent: #fdd835;
    /* Sunny Yellow (Subtle accents) */

    --color-bg-body: #ffffff;
    --color-bg-alt: #f8fcf8;
    /* Very light green tint */
    --color-bg-paper: #ffffff;

    --color-text-main: #1f2937;
    --color-text-muted: #6b7280;
    --color-text-light: #ffffff;

    --color-border: #e5e7eb;

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */

    /* Typography */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    /* Modern, friendly heading font */
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-green: 0 10px 30px -10px rgba(76, 175, 80, 0.5);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

a {
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    gap: 8px;
}

.btn-pill {
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.btn-pill i {
    display: none;
    /* Remove icon for cleaner look */
}

.btn-pill:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(45, 90, 39, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary-light);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid currentColor;
    padding: 10px 24px;
}

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

/* Header - Minimal for Bento Design */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar .container {
    padding: 0;
    background: transparent;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo img {
    height: 140px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background: #fff;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Simple Nav */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Sticky CTA Button */
.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown>a i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    min-width: 200px;
    padding: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Nav Menu - Simple Flat Design */
.nav-menu {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-indicator {
    display: none;
    /* Removed for cleaner design */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 4px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown>a i {
    font-size: 0.8em;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    min-width: 250px;
    padding: 1rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mega Menu - Cleaner Design */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 12px;
    width: min(1000px, 90vw);
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

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

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.mega-tile {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mega-tile:hover {
    background: #ffffff;
    border-color: rgba(45, 90, 39, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tile-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tile-body h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tile-body p {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tile-action {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
    margin-top: auto;
}

.mega-tile:hover .tile-action {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Pseudo-element to bridge the gap for hover */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 10;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text-main);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, var(--color-bg-alt) 0%, #e8f5e9 100%);
    padding: calc(90px + var(--spacing-lg)) 0 var(--spacing-lg);
    /* Header offset */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    padding-right: var(--spacing-lg);
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Base Section Styling */
.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h2 {
    text-align: center;
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.process-flow {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.step-number {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* Products Section */
.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-alt);
}

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

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(76, 175, 80, 0.2);
}

.product-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 4/3;
}

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

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

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: var(--color-bg-alt);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #111827;
    /* Darker footer */
    color: white;
    padding-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #9ca3af;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--color-primary-light);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #6b7280;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================
   BENTO BOX DESIGN SYSTEM
   ============================================ */

/* Bento Grid Container */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 2rem;
}

/* Bento Card Base */
.bento-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(45, 90, 39, 0.15);
}

/* Card Sizes */
.bento-card-small {
    grid-column: span 3;
    min-height: 200px;
}

.bento-card-medium {
    grid-column: span 4;
    min-height: 250px;
}

.bento-card-large {
    grid-column: span 6;
    min-height: 300px;
}

.bento-card-wide {
    grid-column: span 8;
    min-height: 250px;
}

.bento-card-full {
    grid-column: span 12;
    min-height: 200px;
}

.bento-card-tall {
    min-height: 400px;
}

.bento-card-hero {
    grid-column: span 8;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card Content */
.bento-card-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary)); */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    /* box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2); */
}

.bento-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bento-card-description {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bento-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.bento-card-image-full {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Card Variants */
.bento-card-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
}

.bento-card-gradient .bento-card-title,
.bento-card-gradient .bento-card-description {
    color: white;
}

.bento-card-light {
    background: #f8f9fa;
    border-color: transparent;
}

.bento-card-bordered {
    border: 2px solid var(--color-primary);
}

/* CTA Buttons in Cards */
.bento-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.bento-card-cta:hover {
    background: #234a1f;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}

.bento-card-cta-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.bento-card-cta-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(4px);
}

.bento-card-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.bento-card-link:hover {
    gap: 0.75rem;
}

/* Stats Card */
.bento-stat {
    text-align: center;
}

.bento-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bento-stat-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

/* Product Card Specific */
.bento-product-card {
    display: flex;
    flex-direction: column;
}

.bento-product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.bento-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.bento-product-description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Hero Section Specific */
.bento-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.bento-hero-subtitle {
    font-size: 1.5rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.bento-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Grid */
@media (max-width: 1024px) {

    .bento-card-hero,
    .bento-card-wide,
    .bento-card-large {
        grid-column: span 12;
    }

    .bento-card-medium {
        grid-column: span 6;
    }

    .bento-card-small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .bento-card-small,
    .bento-card-medium,
    .bento-card-large,
    .bento-card-wide,
    .bento-card-hero {
        grid-column: span 12;
    }

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

    .bento-hero-subtitle {
        font-size: 1.25rem;
    }

    .bento-hero-actions {
        flex-direction: column;
    }

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

/* Section Spacing */
.bento-section {
    padding: 4rem 0;
}

.bento-section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.bento-section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Nav Logic moved to responsive.css */
@media (max-width: 768px) {
    .navbar .container {
        height: 70px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding-top: 100px;
        /* Reduced top padding on mobile */
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-section .section-subtitle {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8898aa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--color-primary);
}

/* Product Card Actions */
.product-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-card .card-actions {
    margin-top: auto;
    padding-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b85a;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.my-float {
    margin-top: 16px;
}

/* Light Mode Refinements */
body {
    background-color: #fff;
    color: #333;
}

.nav-menu {
    /* background: rgba(255, 255, 255, 0.95); */
    /* Ensure light menu */
}

section:nth-child(even) {
    background-color: #fcfcfc;
    /* Very subtle grey for alternate sections */
}

/* Benefits Grid Update */
.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* More dense grid */
}

/* Mega Menu Styles */
.mega-dropdown {
    position: static !important;
    /* Allow full width */
}

.mega-menu {
    width: 600px;
    padding: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
    display: block;
    /* For transition */
}

/* Override default dropdown hover */
.mega-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mega-column h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
}

.mega-column ul li {
    margin-bottom: 0.5rem;
}

.mega-column ul li a {
    display: block;
    padding: 0.5rem;
    color: var(--color-text-main);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.mega-column ul li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Mobile Mega Menu Adaptation */
@media (max-width: 768px) {
    .mega-dropdown {
        position: relative !important;
    }

    .mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
    }

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

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 1rem;
    }

    .mega-column h4 {
        font-size: 1rem;
        margin-top: 1rem;
        color: var(--color-primary-light);
    }
}

/* Internal Pages General Styles */
.internal-hero {
    padding: calc(150px + var(--spacing-lg)) 0 8rem;
    /* Ultra-dark gradient for maximum contrast */
    background: linear-gradient(135deg, #1a3317 0%, #2d5a27 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.internal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-pattern.png');
    opacity: 0.1;
    /* Very subtle pattern to keep background dark */
    mix-blend-mode: overlay;
}

.internal-hero h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 800;
    /* Heavy multi-layered shadow for pop */
    text-shadow:
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    animation: hero-text-pop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.internal-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    opacity: 1;
    font-weight: 500;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

@keyframes hero-text-pop {
    from {
        transform: scale(0.95) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.internal-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color-bg-body);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

/* Form Styling Enhancements */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.contact-form {
    padding: 1rem;
}

/* Premium Form Styling - Floating Labels */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.floating-group {
    position: relative;
    width: 100%;
}

.floating-group input,
.floating-group select,
.floating-group textarea {
    width: 100%;
    padding: 1.2rem 1.2rem 0.8rem 1.2rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-group label {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
}

/* Floating logic */
.floating-group input:focus~label,
.floating-group input:not(:placeholder-shown)~label,
.floating-group select:focus~label,
.floating-group select:not([value=""])~label,
.floating-group textarea:focus~label,
.floating-group textarea:not(:placeholder-shown)~label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    background: white;
    border-radius: 4px;
}

.floating-group i {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    background: #fff;
}

.floating-group input:focus~i {
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1.2rem;
    color: var(--color-primary-light);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    padding-left: 3rem !important;
}

.input-with-icon input:focus+i,
.input-with-icon select:focus+i,
.input-with-icon textarea:focus+i {
    color: var(--color-primary);
    transform: scale(1.1);
}

.form-control,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.btn-premium {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(45, 90, 39, 0.3);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(45, 90, 39, 0.4);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Timeline/Process style for About Page */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

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

/* Stats enhancement */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Extreme Contact Form Visuals */
.contact-section-wrapper {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(76, 175, 80, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(45, 90, 39, 0.03) 0%, transparent 40%),
        var(--color-bg-body);
}

.bg-decoration {
    display: none;
    /* Removed based on feedback */
}

.bg-decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 8rem;
    color: var(--color-primary-light);
}

.bg-decoration-2 {
    bottom: 15%;
    right: 10%;
    font-size: 10rem;
    color: var(--color-primary);
    animation-duration: 25s;
}

.bg-decoration-3 {
    top: 40%;
    right: 5%;
    font-size: 6rem;
    color: var(--color-secondary);
    animation-duration: 30s;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, 50px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 80px) rotate(240deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

.glass-card-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-card-premium:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(76, 175, 80, 0.15);
}

/* Card Shimmer Effect - More Subtle */
.glass-card-premium::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 48%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 52%);
    animation: shimmer 12s infinite linear;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

@keyframes shimmer {
    0% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(100%);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #2d5a27 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary-light), transparent, var(--color-primary));
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card-premium:hover .glow-border::after {
    opacity: 0.3;
}

/* Enhanced Form Labels */
.floating-group label {
    font-weight: 500;
    letter-spacing: 0.2px;
}

.floating-group input:focus {
    background: #fff;
    border-width: 2px;
}

/* --- GLOBAL WOW FACTOR SYSTEM --- */

/* 1. Entrance Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Consolidated Global Wow Factor Removed Duplicates */

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.header-cta .btn {
    animation: pulse-soft 2s infinite;
}

/* 3. Logo Interaction */
.logo img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

/* 4. Global Card Enhancement */
.glass-card,
.team-card,
.stat-item,
.benefit-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover,
.team-card:hover,
.stat-item:hover,
.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* 5. Gradient Text Standardization */
.section-title,
.contact-info h2 {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}