/* ==========================================================================
   AMI GROUP - BRAND DESIGN SYSTEM & NAVIGATION STYLES
   Modern Agricultural E-Commerce & Corporate Identity
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Color Palette */
    --primary-green: #16a34a;
    --primary-green-hover: #15803d;
    --primary-dark: #0f5127;
    --primary-darker: #063116;
    --primary-light: #f0fdf4;
    --primary-light-hover: #dcfce7;
    --accent-gold: #eab308;
    --accent-gold-dark: #ca8a04;
    --accent-organic: #84cc16;

    /* Neutrals & Backgrounds */
    --bg-white: #ffffff;
    --bg-surface: #f8fafc;
    --bg-topbar: #0b3818;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-green: #bbf7d0;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows & Elevation */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06);
    --shadow-sticky: 0 10px 30px -10px rgba(11, 56, 24, 0.12);
    --shadow-hover: 0 12px 28px -6px rgba(22, 163, 74, 0.22);
    --shadow-dropdown: 0 20px 40px -15px rgba(15, 23, 42, 0.15);

    /* Animation & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout Dimensions */
    --top-bar-height: 40px;
    --header-height: 84px;
    --header-height-scrolled: 70px;
    --container-max-width: 1280px;
}

/* --------------------------------------------------------------------------
   1b. Premium Loading Screen
   -------------------------------------------------------------------------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 40%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: loadingFadeIn 0.8s ease forwards;
}

@keyframes loadingFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-logo {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: #ffffff;
    border: 2px solid #bbf7d0;
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(22, 163, 74, 0.12);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 12px 40px rgba(22, 163, 74, 0.2);
    }
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loading-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.loading-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b3818;
    letter-spacing: 0.08em;
}

.loading-brand-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #16a34a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Leaf Spinner */
.loading-spinner {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
}

.spinner-leaf {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16a34a;
    animation: leafBounce 1.4s ease-in-out infinite;
}

.spinner-leaf:nth-child(1) {
    animation-delay: 0s;
}

.spinner-leaf:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner-leaf:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes leafBounce {
    0%, 80%, 100% {
        transform: scale(0.5);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Base Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. Top Announcement & Contact Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--bg-topbar);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 500;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
    transition: all var(--transition-normal);
}

.top-bar-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-cert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.top-divider {
    color: rgba(255, 255, 255, 0.25);
}

.top-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
}

.top-info-link:hover {
    color: var(--accent-gold);
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #a7f3d0;
}

/* --------------------------------------------------------------------------
   4. Main Navbar & Header (Sticky)
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: height var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: var(--shadow-sticky);
    border-bottom-color: rgba(34, 197, 94, 0.2);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-container {
    max-width: var(--container-max-width);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --------------------------------------------------------------------------
   5. AMI Group Brand Logo
   -------------------------------------------------------------------------- */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    user-select: none;
    transition: transform var(--transition-fast);
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.logo-emblem {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-bounce);
}

.site-header.scrolled .logo-emblem {
    width: 42px;
    height: 42px;
}

.brand-logo:hover .logo-emblem {
    transform: rotate(5deg) scale(1.05);
}

.logo-icon {
    width: 100%;
    height: 100%;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-gujarati {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #dc2626; /* Gujarati brand red accent matching profile */
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-english {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.12em;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   6. Navigation Links & Items
   -------------------------------------------------------------------------- */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-medium);
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Hover Accent Pill effect */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary-light);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--transition-fast);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

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

/* Bottom indicator bar for active item */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: transform var(--transition-fast);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown-chevron {
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 320px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: var(--shadow-dropdown);
    border: 1px solid var(--border-green);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-normal);
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-inner {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
}

.dropdown-icon-box {
    width: 38px;
    height: 38px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.dropdown-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Right Actions & Buttons
   -------------------------------------------------------------------------- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-icon-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-green);
    border-color: var(--border-green);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

/* Prominent Explore Products CTA Button */
.btn-explore-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shiny hover highlight */
.btn-explore-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-explore-products:hover::before {
    left: 140%;
}

.btn-explore-products:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-explore-products:active {
    transform: translateY(0) scale(0.98);
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.btn-explore-products:hover .btn-icon-wrapper {
    transform: translateX(4px);
}

/* Hamburger Toggle Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 38px;
    padding: 9px 8px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

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

.hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   8. Mobile Drawer Menu & Overlay
   -------------------------------------------------------------------------- */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

.drawer-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

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

.drawer-cta-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.full-width {
    width: 100%;
}

.drawer-contact-info {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.drawer-contact-info p {
    margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------------------
   9. Interactive Quick Search Overlay
   -------------------------------------------------------------------------- */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 2050;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    width: 100%;
    max-width: 600px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-dropdown);
    transform: translateY(-20px);
    transition: transform var(--transition-fast);
}

.search-overlay.open .search-modal {
    transform: translateY(0);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-surface);
    border: 2px solid var(--border-green);
    border-radius: 14px;
    padding: 0.75rem 1rem;
}

.search-input-icon {
    color: var(--primary-green);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.search-close {
    background: #e2e8f0;
    color: var(--text-muted);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.search-quick-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.tag-btn {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: all var(--transition-fast);
}

.tag-btn:hover {
    background: var(--primary-green);
    color: white;
}

/* --------------------------------------------------------------------------
   10. AMI Group Premium Hero Section (Fresh Eco Green Theme)
   -------------------------------------------------------------------------- */
.ami-hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--top-bar-height));
    display: flex;
    align-items: center;
    padding: 4.5rem 2rem;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.96) saturate(1.15);
    transform: scale(1.02);
    transition: transform 12s ease-out;
}

.ami-hero-section:hover .hero-bg-layer {
    transform: scale(1.05);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 253, 244, 0.88) 45%, 
        rgba(255, 255, 255, 0.94) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Floating Leaf & Water Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: floatParticle 8s ease-in-out infinite alternate;
}

.particle.p1 { top: 18%; left: 8%; animation-delay: 0s; font-size: 2rem; }
.particle.p2 { top: 75%; left: 12%; animation-delay: 2s; font-size: 1.6rem; }
.particle.p3 { top: 22%; right: 15%; animation-delay: 4s; font-size: 1.8rem; }
.particle.p4 { top: 82%; right: 8%; animation-delay: 1s; font-size: 1.4rem; }

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-25px) rotate(15deg); }
}

.hero-content-wrapper {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

/* Left Column: Copy & CTAs */
.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(22, 163, 74, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(22, 163, 74, 0.25);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
}

.badge-icon {
    font-size: 1rem;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.text-gradient-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.65;
    max-width: 620px;
    margin-bottom: 2.25rem;
}

/* CTA Buttons Wrapper */
.hero-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(22, 163, 74, 0.4);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-hero-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-hero-explore:hover::before {
    left: 140%;
}

.btn-hero-explore:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.5);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-hero-explore:active {
    transform: translateY(0) scale(0.98);
}

.btn-hero-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-hero-contact:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Trust Bar Below CTAs */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-green);
    border-radius: 20px;
    padding: 1.15rem 1.5rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 620px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.trust-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 36px;
    background-color: var(--border-color);
}

/* Right Column: Visual Product Showcase */
.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.product-stage-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-card {
    position: relative;
    border-radius: 24px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(187, 247, 208, 0.9);
    box-shadow: 0 25px 50px -12px rgba(15, 81, 39, 0.2);
    animation: heroFloat 6s ease-in-out infinite;
    transition: transform var(--transition-bounce);
}

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

.product-main-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.product-glow-backdrop {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    z-index: -1;
    border-radius: 40px;
    filter: blur(15px);
}

/* Floating Glass Feature Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-green);
    border-radius: 16px;
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-dropdown);
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite alternate;
}

.badge-top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 2.5s;
}

.card-icon-green, .card-icon-organic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --------------------------------------------------------------------------
   11. Media Queries for Responsiveness
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .btn-explore-products {
        display: none;
    }

    .top-bar-left .top-divider:nth-child(4),
    .top-bar-left .top-info-link:nth-child(5) {
        display: none;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-col {
        align-items: center;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-lead-text {
        font-size: 1.1rem;
    }

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

    .hero-trust-bar {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .top-bar-right {
        display: none;
    }

    .top-bar-container {
        justify-content: center;
    }

    .navbar-container {
        padding: 0 1.25rem;
    }

    .logo-gujarati {
        font-size: 1.1rem;
    }

    .logo-english {
        font-size: 0.95rem;
    }

    .ami-hero-section {
        padding: 3rem 1.25rem;
    }

    .hero-main-title {
        font-size: 2.25rem;
    }

    .hero-lead-text {
        font-size: 1rem;
    }

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

    .btn-hero-explore, .btn-hero-contact {
        width: 100%;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }
}

/* --------------------------------------------------------------------------
   12. Our Product Categories Section
   -------------------------------------------------------------------------- */
.categories-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.section-header {
    margin-bottom: 3.5rem;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary-green);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.78125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-green);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* 6 Column Responsive Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.35rem;
}

.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Green top accent line on hover */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #15803d);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(22, 163, 74, 0.18);
    border-color: var(--border-green);
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition-bounce);
}

.category-card:hover .card-icon-wrapper {
    background: var(--primary-green);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.3);
}

.cat-svg-icon {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    flex-shrink: 0;
    display: block;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.category-desc {
    font-size: 0.84375rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: color var(--transition-fast);
    margin-top: auto;
}

.link-arrow {
    transition: transform var(--transition-fast);
}

.category-card:hover .category-link {
    color: var(--primary-green-hover);
}

.category-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

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

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

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

}

/* --------------------------------------------------------------------------
   13. Featured Agricultural Products Section
   -------------------------------------------------------------------------- */
.featured-products-section {
    padding: 6rem 2rem;
    background-color: var(--bg-surface);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(15, 81, 39, 0.16);
    border-color: var(--border-green);
}

/* Image Showcase Box */
.product-image-box {
    position: relative;
    width: 100%;
    height: 250px;
    background: radial-gradient(circle, #f0fdf4 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
}

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

.product-cat-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: #ffffff;
    color: #15803d;
    font-size: 0.78125rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1.5px solid #bbf7d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.product-cat-tag.promoter {
    background: #ffffff;
    color: #854d0e;
    border-color: #fde047;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-cat-tag.pesticide {
    background: #ffffff;
    color: #9f1239;
    border-color: #fecdd3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Product Info Box */
.product-info-box {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-strain {
    font-size: 0.78125rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border-color);
    margin-bottom: 1.25rem;
    font-size: 0.78125rem;
}

.pack-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-dark);
    font-weight: 600;
}

.dose-tag {
    background: var(--bg-surface);
    color: var(--text-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.product-card-footer {
    margin-top: auto;
}

.btn-view-details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-green);
    background: var(--primary-light);
    border: 1px solid var(--border-green);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.btn-view-details:hover {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.25);
}

.btn-view-details svg {
    transition: transform var(--transition-fast);
}

.btn-view-details:hover svg {
    transform: translateX(4px);
}

/* View All Products CTA */
.view-all-wrapper {
    margin-top: 1rem;
}

.btn-view-all-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-view-all-products:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-view-all-products svg {
    transition: transform var(--transition-fast);
}

.btn-view-all-products:hover svg {
    transform: translateX(5px);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

}

/* --------------------------------------------------------------------------
   14. About AMI Group Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 6.5rem 2rem;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

/* Left Visual Column */
.about-visual-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 81, 39, 0.18);
    border: 1px solid var(--border-green);
    background: var(--bg-surface);
}

.about-img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-shape-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 56, 24, 0.4) 100%);
    pointer-events: none;
}

.about-floating-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-green);
    border-radius: 20px;
    padding: 1rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-dropdown);
    z-index: 5;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.badge-text strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Right Copy Column */
.about-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.pillar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: all var(--transition-fast);
}

.pillar-card:hover {
    background: var(--primary-light);
    border-color: var(--border-green);
    transform: translateY(-3px);
}

.pillar-icon {
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.pillar-desc {
    font-size: 0.78125rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.about-cta-box {
    margin-top: 0.5rem;
}

.btn-about-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 2.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-about-learn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-about-learn svg {
    transition: transform var(--transition-fast);
}

.btn-about-learn:hover svg {
    transform: translateX(5px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 640px) {
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 4rem 1.25rem;
    }

    .about-floating-badge {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

/* --------------------------------------------------------------------------
   15. Why Choose AMI Section
   -------------------------------------------------------------------------- */
.why-ami-section {
    padding: 6rem 2rem;
    background-color: var(--bg-surface);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(22, 163, 74, 0.16);
    border-color: var(--border-green);
}

.why-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition-bounce);
}

.why-card:hover .why-icon-box {
    background: var(--primary-green);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.3);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.why-card-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

/* Official Logo Styling */
.official-logo-box {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.official-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

/* --------------------------------------------------------------------------
   16. Solutions for Every Stage of Farming Section (Parallax & Glass)
   -------------------------------------------------------------------------- */
.farming-stages-section {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
    color: #ffffff;
}

.stages-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.9) saturate(1.1);
    transform: scale(1.03);
}

.stages-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(11, 56, 24, 0.85) 0%, 
        rgba(15, 81, 39, 0.75) 50%, 
        rgba(6, 49, 22, 0.88) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.light-header .section-title {
    color: #ffffff;
    font-size: 2.75rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.light-header .section-subtitle {
    color: #e2e8f0;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #a7f3d0 !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px);
}

.green-glow {
    background-color: #4ade80 !important;
    box-shadow: 0 0 10px #4ade80;
}

/* 4 Glass Cards Grid */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.stage-glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 2.25rem 1.65rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.stage-glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--primary-green);
    box-shadow: 0 25px 50px -10px rgba(22, 163, 74, 0.35);
}

.stage-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all var(--transition-bounce);
}

.stage-glass-card:hover .stage-icon-wrapper {
    background: var(--primary-green);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.stage-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.stage-card-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

.stage-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.stage-glass-card:hover .stage-card-link {
    color: var(--primary-green-hover);
}

.stage-glass-card:hover .stage-card-link .link-arrow {
    transform: translateX(5px);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1100px) {
    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
}

/* --------------------------------------------------------------------------
   17. How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works-section {
    padding: 6.5rem 2rem;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.process-wrapper {
    position: relative;
    margin-top: 2rem;
}

.connecting-line-svg {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(22, 163, 74, 0.18);
    border-color: var(--border-green);
}

.step-badge {
    position: absolute;
    top: -20px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
    border: 3px solid var(--bg-white);
}

.step-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-bounce);
}

.step-card:hover .step-icon-box {
    background: var(--primary-green);
    color: #ffffff;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Media Queries (Vertical Timeline on Mobile) */
@media (max-width: 900px) {
    .connecting-line-svg {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .step-card {
        padding-top: 2.25rem;
    }
}

/* --------------------------------------------------------------------------
   18. Quality & Trust Section
   -------------------------------------------------------------------------- */
.quality-trust-section {
    padding: 6.5rem 2rem;
    background-color: #faf8f5;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.cream-badge {
    background: #f0fdf4 !important;
    border-color: var(--border-green) !important;
    color: var(--primary-dark) !important;
}

.trust-lead-msg {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 0.5rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 1rem;
}

.cert-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -8px rgba(22, 163, 74, 0.15);
    border-color: var(--border-green);
}

.cert-seal-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cert-seal-box.gold {
    background: #fef9c3;
    border: 1px solid #fde047;
}

.cert-seal-box.green {
    background: var(--primary-light);
    border: 1px solid var(--border-green);
}

.cert-code {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.cert-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.cert-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   19. Contact AMI Group Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 6.5rem 2rem;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info-col {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.info-card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.info-box-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.info-box-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
}

.detail-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-green);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Form Right */
.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-green);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -10px rgba(15, 81, 39, 0.08);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-control:focus {
    background: var(--bg-white);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.select-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.textarea-control {
    resize: vertical;
    min-height: 110px;
}

.btn-send-enquiry {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    cursor: pointer;
    transition: all var(--transition-bounce);
    margin-top: 0.5rem;
}

.btn-send-enquiry:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* --------------------------------------------------------------------------
   20. Final Call-To-Action (CTA) Section
   -------------------------------------------------------------------------- */
.final-cta-section {
    position: relative;
    padding: 7.5rem 2rem;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.cta-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) saturate(1.2);
    transform: scale(1.05);
}

.cta-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(11, 56, 24, 0.92) 0%, 
        rgba(21, 128, 61, 0.88) 50%, 
        rgba(6, 49, 22, 0.95) 100%
    );
}

.cta-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.cta-ambient-glow.g1 {
    top: -100px;
    left: 10%;
    width: 350px;
    height: 350px;
    background: rgba(74, 222, 128, 0.25);
}

.cta-ambient-glow.g2 {
    bottom: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(22, 163, 74, 0.3);
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #a7f3d0;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-lead-text {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2.75rem;
    line-height: 1.6;
}

.cta-buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-bounce);
}

.btn-cta-explore:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.3);
    background: #f0fdf4;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.btn-cta-contact:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   21. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #062610;
    color: #94a3b8;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: #cbd5e1;
}

.footer-cert-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-cert-tags span {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #4ade80;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    font-size: 0.875rem;
    color: #cbd5e1;
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: #4ade80;
}

.footer-contact-col p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.65rem;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-links a {
    color: #94a3b8;
}

.footer-bottom-links a:hover {
    color: #4ade80;
}

/* Responsive Rules for Contact, Trust, CTA, Footer */
@media (max-width: 850px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

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

    .cta-headline {
        font-size: 2.15rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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









