/* Fonts managed in _Layout.cshtml for parallel loading */

:root {
    /* --- EMERALD ZEN PALETTE --- */
    --g-forest: #042F2C;
    /* Deep cinematic forest green */
    --g-emerald: #10B981;
    /* Primary Luminous Emerald */
    --g-mint: #D1FAE5;
    /* Soft mint accent */
    --g-white: #F8FAFC;
    /* Crisp slate white */
    --g-dark-glass: rgba(4, 47, 44, 0.9);
    --g-border: rgba(16, 185, 129, 0.2);

    /* --- MOTION & DEPTH --- */
    --g-trans: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --g-blur: blur(25px) saturate(180%);
    --g-shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);
}

/* ================= BODY & TYPOGRAPHY ================= */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #334155;
    background: #f8fafc;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Main content spacing to prevent navbar overlap */
main {
    padding-top: 85px;
    /* Navbar height buffer */
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--g-forest);
    line-height: 1.2;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #64748b;
}

a {
    text-decoration: none;
    transition: var(--g-trans);
}

/* ================= PREMIUM BUTTON SYSTEM ================= */
.premium-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 15px 32px !important;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25) !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

.premium-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35) !important;
    background: linear-gradient(135deg, #2edb6a 0%, #1eb556 100%) !important;
    color: #ffffff !important;
}

.premium-btn-outline {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(34, 197, 94, 0.6) !important;
    color: #22c55e !important;
    box-shadow: none !important;
}

.premium-btn-outline:hover {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: #22c55e !important;
    color: #16a34a !important;
}

.premium-btn i {
    font-size: 1.1rem !important;
    transition: transform 0.3s ease !important;
}

.premium-btn:hover i {
    transform: translateX(5px) !important;
}

/* ================= EMERALD ZEN NAVBAR ================= */
.agro-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0;
}

.agro-navbar .container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: var(--g-dark-glass);
    backdrop-filter: var(--g-blur);
    -webkit-backdrop-filter: var(--g-blur);
    border: none;
    border-bottom: 1px solid var(--g-border);
    border-radius: 0;
    padding: 10px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.nav-link {
    color: var(--g-white) !important;
    opacity: 0.7;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 20px !important;
    transition: var(--g-trans);
    display: flex;
    align-items: center;
}

.nav-link.active {
    opacity: 1;
    color: var(--g-emerald) !important;
}

/* --- THE EMERALD ZEN BUTTON --- */
.nav-link.contact-link {
    background: var(--g-emerald);
    color: #fff !important;
    opacity: 1 !important;
    border-radius: 100px;
    padding: 10px 28px !important;
    margin-left: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none !important;
    transition: var(--g-trans);
    position: relative;
    overflow: hidden;
}

.nav-link.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

/* Hover effect removed */

/* ================= GLOBAL HERO CURVATURE ================= */
/* This ensures all landing heroes have the premium curved bottom look */
.hero-medium,
.hero-slider-premium,
.cap-new-hero,
.pr-modern-hero,
.team-hero-lux,
.hero-v3,
.roadmap-hero,
.faq-hero-lux,
.lb-modern-hero,
.knowledge-hero,
.editorial-hero,
.contact-hero-v11 {
    border-radius: 0 0 80px 80px !important;
    overflow: hidden !important;
}

/* Adjust for mobile screens to keep the curve subtle */
@media (max-width: 768px) {

    .hero-medium,
    .hero-slider-premium,
    .cap-new-hero,
    .pr-modern-hero,
    .team-hero-lux,
    .hero-v3,
    .roadmap-hero,
    .faq-hero-lux,
    .lb-modern-hero,
    .knowledge-hero,
    .editorial-hero,
    .contact-hero-v11 {
        border-radius: 0 0 40px 40px !important;
    }
}

/* ================= DROPDOWNS ================= */
.dropdown-menu {
    background: rgba(4, 47, 44, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid var(--g-border);
    border-radius: 12px;
    padding: 15px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.dropdown-item {
    color: #ffffff;
    padding: 10px 25px;
    transition: var(--g-trans);
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--g-emerald) !important;
}

/* ================= FOOTER ================= */
.animated-footer {
    background: var(--g-forest);
    padding: 100px 0 60px;
    position: relative;
    color: var(--g-white);
    overflow: hidden;
}

.footer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--g-emerald);
    font-weight: 800;
    margin-bottom: 30px;
}

.phone-highlight {
    font-size: 32px;
    font-weight: 950;
    color: var(--g-emerald);
}

/* ================= CHAT BOT ================= */
#agroBotLauncher {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 75px;
    height: 75px;
    background: #ffffff;
    border: 3px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.launcher-label {
    position: absolute;
    right: 90px;
    white-space: nowrap;
    background: #22c55e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

#agroBotLauncher:hover .launcher-label {
    opacity: 1;
    transform: translateX(0);
}

/* Add a small chat badge icon overlay */
#agroBotLauncher::after {
    content: '\f27a'; /* FontAwesome Comment Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -5px;
    right: -5px;
    background: #16a34a;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #fff;
    z-index: 10;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

#agroBotLauncher:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.bot-launcher-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
}

.launcher-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: botPulse 2s infinite;
}

@keyframes botPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

#agroBot {
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 380px;
    height: 600px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.agro-bot-header {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    padding: 20px 25px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bot-avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.bot-status-wrap h5 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
}

.bot-status {
    font-size: 11px;
    color: var(--g-emerald);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--g-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--g-emerald);
    animation: pulse 2s infinite;
}

.agro-bot-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-msg {
    padding: 14px 20px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.bot-msg:not(.user) {
    background: #fff;
    color: var(--g-forest);
    align-self: flex-start;
    border: 1px solid var(--g-border);
    border-bottom-left-radius: 4px;
}

.bot-msg.user {
    background: linear-gradient(135deg, var(--g-emerald), #059669);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.agro-bot-footer {
    padding: 20px;
    background: #fff;
    border-top: 1px solid var(--g-border);
    display: flex;
    gap: 12px;
}

#agroBotInput {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--g-border);
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    transition: var(--g-trans);
}

#agroBotInput:focus {
    border-color: var(--g-emerald);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

#sendAgroBot {
    background: var(--g-emerald);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--g-trans);
}

#sendAgroBot:hover {
    background: var(--g-forest);
    transform: translateY(-2px);
}

/* ================= ADDITIONAL FOOTER STYLES ================= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact h6 {
    color: var(--g-emerald);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-contact p {
    color: rgba(248, 250, 252, 0.6);
    margin: 0;
    font-size: 14px;
}

.footer-legal-links a {
    color: rgba(248, 250, 252, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* ================= LUX COMPANY CARD (ELITE DARK EDITION) ================= */
.lux-company-card {
    position: fixed;
    top: 90px;
    left: 30px;
    width: 380px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-company-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lux-card-inner {
    background: rgba(4, 47, 44, 0.98); /* Deep Forest Green */
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    color: #fff;
}

/* Close Button Styling */
.portal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    z-index: 100;
}

.portal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.portal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.portal-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    line-height: 1.1;
}

.brand-title {
    font-size: 1.6rem;
    font-weight: 850;
    color: #fff;
    margin: 0;
    padding: 0;
}

.brand-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--g-emerald);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.lux-contact-entries {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.lux-entry {
    display: flex;
    align-items: center;
    gap: 20px;
}

.entry-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--g-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.entry-data label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(16, 185, 129, 0.6);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.entry-data a, .entry-data p {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-decoration: none;
    line-height: normal;
}

.entry-data a:hover {
    color: var(--g-emerald);
}

.lux-portal-footer {
    display: flex;
    gap: 12px;
}

.lux-cta-main {
    flex: 1;
    background: var(--g-emerald);
    color: #fff !important;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.lux-cta-main:hover {
    background: #fff;
    color: var(--g-forest) !important;
    transform: translateY(-3px);
}

.lux-social-entry {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    transition: 0.3s;
}

.lux-social-entry:hover {
    background: #0077b5;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .lux-company-card {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        top: 85px;
    }
}


/* ================= ANIMATIONS ================= */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   PREMIUM NAVBAR & FOOTER - FRESHGREEN AGRO
   Modern Dark & Fresh Green Theme
========================================================= */

/* ================= PREMIUM NAVBAR ================= */
/* ================= PREMIUM FLOATING PILL NAVBAR ================= */

/* Outer wrapper - full width background */
.agro-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
}

/* Inner container - matches page content width */
.agro-navbar .container-fluid {
    max-width: 100%;
    width: 100%;
    /* Bootstrap container-xl */
    margin: 0 auto;
    padding: 12px 40px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Override site.css capsule styles to ensure full width */
.agro-navbar .container-fluid {
    background: rgba(17, 24, 39, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    border: none !important;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    padding: 10px 60px !important;
    max-width: 100% !important;
    width: 100% !important;
}


/* Logo */
.navbar-brand {
    padding: 0;
}

.navbar-brand .logo {
    height: 70px;
    width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
}






.logo-hover-hint {
    position: absolute;
    top: 65px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 1000;
    opacity: 1;
    transition: all 0.5s ease;
    animation: simpleFloat 3s infinite ease-in-out;
}

.hint-text {
    font-family: 'Kaushan Script', cursive;
    color: #fff;
    font-size: 1.2rem;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hint-arrow-svg {
    transform: rotate(0deg);
    margin-bottom: -5px;
    margin-left: -15px;
    /* Pull arrow left to point to logo center */
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

@keyframes simpleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.navbar-brand:hover .logo-hover-hint {
    opacity: 0;
    transform: translateY(10px);
}

/* Nav Links */
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    padding: 12px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 2px;
}

/* Animated underscore */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #22c55e;
    /* Green */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.1);
}

/* Contact Button - Green Gradient */
.nav-link.contact-link {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff !important;
    padding: 12px 30px !important;
    margin-left: 15px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    border: none;
}

.nav-link.contact-link::after {
    display: none;
}

/* Hover effect removed */

/* Dropdown Menu - Dark */
.dropdown-menu {
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 25px;
    font-weight: 500;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
    border-left-color: #22c55e !important;
    padding-left: 30px !important;
}

/* Admin Link */
.nav-link .fa-user-shield,
.nav-link .fa-lock {
    color: #22c55e;
    margin-right: 6px;
}

/* Mobile Toggler */
.navbar-toggler {
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.navbar-toggler .fa-bars {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1399px) {
    .agro-navbar {
        padding: 0 40px;
    }
}

@media (max-width: 1199px) {
    .agro-navbar {
        padding: 0 35px;
    }
}




/* ================= PREMIUM FOOTER ================= */
.animated-footer {
    background: linear-gradient(180deg, #111827 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 100px 0 40px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%2322c55e" opacity="0.05"/></svg>') no-repeat;
    background-size: cover;
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }
}

/* Footer Content */
.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    /* Removed filter to ensure visibility */
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-title {
    color: #22c55e;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #22c55e;
    border-radius: 2px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #22c55e;
    transform: translateX(8px);
}

.footer-contact h6 {
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-highlight {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #22c55e !important;
}

/* Socials */
.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-legal-links a:hover {
    color: #22c55e;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   NEXT-GEN DESIGN ENHANCEMENTS (Inspiration: Exultsoft)
   Advanced Bento Grids, Organic Blobs, Glassmorphism
========================================================= */

/* ================= ORGANIC BACKGROUND BLOBS ================= */
.organic-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #22c55e;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #16a34a;
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #eab308;
    top: 40%;
    left: 10%;
    opacity: 0.08;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5%, 10%) scale(1.1);
    }

    66% {
        transform: translate(-5%, 5%) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.why-bento-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.intro-desc-large {
    font-size: 1.25rem;
    color: #475569;
    max-width: 800px;
    line-height: 1.6;
    margin-top: 20px;
}

.section-title.gradient {
    background: linear-gradient(135deg, #022c22 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 950;
    letter-spacing: -2px;
}

/* ================= NEXT-GEN BENTO GRID ================= */
.bento-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 380px);
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

/* Featured Large Card */
.bento-card.card-featured {
    grid-column: span 2;
    grid-row: span 2;
    background: #022c22;
    color: white;
}

.card-bg-overlay {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: transform 1.2s ease;
}

.bento-card:hover .card-bg-overlay {
    transform: scale(1.1);
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(2, 44, 34, 0.5) 0%,
            rgba(2, 44, 34, 0.3) 40%,
            rgba(2, 44, 34, 0.9) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 5;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-icon-main {
    font-size: 3.5rem;
    color: #4ade80;
    /* Brighter Green for Dark BG */
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
}

.card-featured h3 {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.card-featured h3 .text-success {
    color: #4ade80 !important;
    /* Vivid Green */
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

/* Stat Cards */
.bento-card.card-stat {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.card-stat .stat-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Luxe Button in Bento */
.alefox-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--luxe-green, #22c55e);
    color: white !important;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    width: fit-content;
    border: none;
}

.alefox-btn:hover {
    background: #16a34a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.icon-box-sm {
    width: 55px;
    height: 55px;
    background: #f0fdf4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.4rem;
}

.card-stat:hover .icon-box-sm {
    background: #22c55e;
    color: white;
    transform: rotate(10deg);
}

.stat-value {
    font-size: 4.5rem;
    font-weight: 950;
    letter-spacing: -3px;
    line-height: 1;
    color: #022c22;
    margin-bottom: 5px;
}

.stat-label-modern {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wide Content Card */
.bento-card.card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 50px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.wide-info h4 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #022c22;
}

.cert-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cert-pill-modern {
    padding: 8px 18px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #16a34a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

@media (max-width: 1200px) {
    .bento-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .bento-grid-modern {
        grid-template-columns: 1fr;
    }

    .bento-card.card-featured,
    .bento-card.card-wide {
        grid-column: span 1;
    }

    .stat-value {
        font-size: 3.5rem;
    }
}

/* ==========================================================================
   CONSOLIDATED MOBILE STYLES (Max-Width: 991px)
   Centralized fixes for ALL pages to ensure a premium mobile experience.
   ========================================================================== */