/* ======================================
   Agroelementa Trading Private Limited
   Premium Agriculture Export Theme
   ====================================== */

/* CSS Custom Properties - Premium Design System */
:root {
    /* Brand Colors - Refined Green & Gold Palette */
    --color-primary: #feea9e;
    --color-primary-dark: #d4c477;
    --color-primary-light: #fff5c3;
    --color-secondary: #4a6341;
    --color-accent: #c9a227;
    --color-base: #34482f;
    --color-base-dark: #2a3a26;
    --color-base-light: #4a6341;

    /* Premium Gold Gradient */
    --gold-gradient: linear-gradient(135deg, #feea9e 0%, #c9a227 50%, #feea9e 100%);

    /* Background colors */
    --bg-dark: #34482f;
    --bg-card: rgba(42, 58, 38, 0.95);
    --bg-card-hover: rgba(52, 72, 47, 0.98);
    --bg-glass: rgba(254, 234, 158, 0.05);
    --bg-glass-strong: rgba(254, 234, 158, 0.12);

    /* Text colors */
    --text-primary: #feea9e;
    --text-secondary: rgba(254, 234, 158, 0.85);
    --text-muted: rgba(254, 234, 158, 0.6);
    --text-on-gold: #34482f;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #feea9e 0%, #fff5c3 50%, #d4c477 100%);
    --gradient-hero: linear-gradient(180deg, rgba(52, 72, 47, 0) 0%, rgba(52, 72, 47, 0.9) 100%);
    --gradient-card: linear-gradient(145deg, rgba(254, 234, 158, 0.06), rgba(74, 99, 65, 0.12));
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(254, 234, 158, 0.2), transparent);
    --gradient-premium: linear-gradient(135deg, #34482f 0%, #4a6341 50%, #34482f 100%);

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Premium Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 40px rgba(254, 234, 158, 0.25);
    --shadow-glow-strong: 0 0 60px rgba(254, 234, 158, 0.4);
    --shadow-inner: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 1px rgba(254, 234, 158, 0.1);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ======================================
   Professional Navigation Hover Effects
   ====================================== */

/* Main nav links with animated underline */
header nav ul li a {
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #feea9e, #fff5c3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(254, 234, 158, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
    z-index: -1;
}

header nav ul li a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(254, 234, 158, 0.4);
}

header nav ul li a:hover::before {
    width: 70%;
}

header nav ul li a:hover::after {
    opacity: 1;
}

/* Logo hover effect */
header nav>a:first-child {
    transition: all 0.3s ease;
}

header nav>a:first-child:hover {
    transform: scale(1.02);
}

header nav>a:first-child:hover img {
    filter: drop-shadow(0 0 12px rgba(254, 234, 158, 0.6));
}

/* Get Quote button enhanced hover */
header nav div a[href="/contact"] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header nav div a[href="/contact"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 234, 158, 0.3);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Form Input Styles - Ensure visible text color */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    color: #34482f !important;
    /* Dark green text */
    background-color: #ffffff;
    font-family: inherit;
}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
    /* Gray placeholder */
    opacity: 1;
}

/* Focus state with theme colors */
input:focus,
textarea:focus,
select:focus {
    border-color: #34482f !important;
    box-shadow: 0 0 0 3px rgba(52, 72, 47, 0.1);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======================================
   Header & Navigation
   ====================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(52, 72, 47, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(254, 234, 158, 0.5));
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-xs) var(--space-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Animated underline from center */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

/* Glow effect behind text */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(254, 234, 158, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(254, 234, 158, 0.5);
}

.nav-link:hover::after {
    width: 80%;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary), transparent);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ======================================
   Hero Section
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(254, 234, 158, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(254, 234, 158, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(74, 99, 65, 0.1) 0%, transparent 40%);
    z-index: 2;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(52, 72, 47, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--space-2xl) 0;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ======================================
   Buttons
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #34482f;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* ======================================
   Sections
   ====================================== */
.section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-glass);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ======================================
   Features Section
   ====================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ======================================
   Products Section
   ====================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-category {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.25rem 0.75rem;
    background: rgba(10, 15, 13, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: var(--color-primary);
}

.product-info {
    padding: var(--space-md);
}

.product-name {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ======================================
   CTA Section
   ====================================== */
.cta-card {
    background: var(--gradient-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(34, 197, 94, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(132, 204, 22, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

/* ======================================
   Page Header
   ====================================== */
.page-header {
    padding: 150px 0 var(--space-xl);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(34, 197, 94, 0.15) 0%, transparent 50%);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-xs);
}

.page-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ======================================
   Filter Bar
   ====================================== */
.filter-bar {
    margin-bottom: var(--space-lg);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
}

.filter-group {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

/* ======================================
   Contact Section
   ====================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.glass-card h2 {
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.info-card h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Alert */
.alert {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--color-primary-light);
}

/* ======================================
   About Section
   ====================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.value-icon {
    font-size: 1.5rem;
}

.value-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-item p {
    margin: 0;
    font-size: 0.9rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-text {
    color: var(--text-secondary);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

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

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    border: 3px solid rgba(34, 197, 94, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card p {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* ======================================
   404 Page
   ====================================== */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.error-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* ======================================
   Empty State
   ====================================== */
.empty-state {
    text-align: center;
    padding: var(--space-2xl);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.empty-state h3 {
    margin-bottom: var(--space-xs);
}

.empty-state p {
    color: var(--text-secondary);
}

/* ======================================
   Footer
   ====================================== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ======================================
   Utilities
   ====================================== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-lg);
}

/* ======================================
   Animations
   ====================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 13, 0.98);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

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

    .about-image {
        order: -1;
    }

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

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .filter-group {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

/* ======================================
   Mobile Menu Styles
   ====================================== */

/* Mobile Menu Button */
#mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

@media (max-width: 768px) {
    #mobileMenuBtn {
        display: block;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 72, 47, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 2rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-menu ul li {
    margin: 1rem 0;
}

.mobile-menu ul li a {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-menu ul li a:hover {
    background: rgba(254, 234, 158, 0.1);
    transform: scale(1.05);
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(254, 234, 158, 0.3);
}

/* ======================================
   Enhanced Mobile Responsiveness
   ====================================== */

@media (max-width: 768px) {

    /* Typography adjustments */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Container padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Hero section mobile */
    section.min-h-\[90vh\] {
        min-height: 70vh;
    }

    /* Cards grid mobile */
    .grid.md\:grid-cols-2,
    .grid.md\:grid-cols-3,
    .grid.lg\:grid-cols-3,
    .grid.lg\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* 2 columns on mobile for some grids */
    .grid.grid-cols-2 {
        gap: 0.75rem;
    }

    /* Buttons mobile */
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .px-8 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Section padding mobile */
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .py-16 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    /* Gap adjustments */
    .gap-12 {
        gap: 2rem;
    }

    .gap-8 {
        gap: 1.5rem;
    }

    /* Footer mobile */
    footer .grid {
        text-align: center;
    }

    footer .flex.justify-center.gap-4 {
        justify-content: center !important;
    }

    /* Hide side enquiry button on mobile */
    .fixed.left-0 {
        display: none !important;
    }

    /* WhatsApp button mobile position */
    .fixed.bottom-6.right-6 {
        bottom: 1rem;
        right: 1rem;
    }

    /* Cards mobile styling */
    .rounded-2xl {
        border-radius: 1rem;
    }

    .p-8 {
        padding: 1.25rem;
    }

    .p-6 {
        padding: 1rem;
    }

    /* Top bar hide on mobile - handled by Tailwind hidden md:block */

    /* Navigation mobile */
    header nav .hidden.md\:flex {
        display: none !important;
    }

    /* Logo size mobile */
    header .h-14.w-14 {
        height: 2.5rem;
        width: 2.5rem;
    }

    header .text-xl {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Extra small mobile adjustments */
    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.35rem !important;
    }

    /* Full width buttons */
    .inline-block.bg-gold,
    .inline-block.bg-agro-base {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Stack flex items */
    .flex.items-center.gap-4 {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Certification logos smaller */
    .w-20.h-20 {
        width: 4rem;
        height: 4rem;
    }

    /* Director cards */
    .director-card .h-72 {
        height: 14rem;
    }

    /* Process steps horizontal scroll */
    .flex.flex-wrap.justify-center.gap-8 {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .flex.flex-wrap.justify-center.gap-8>div {
        flex-shrink: 0;
        min-width: 140px;
    }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {

    a,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Increase tap area for links */
    nav a,
    footer a {
        padding: 0.75rem;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .fixed.bottom-6 {
        bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

/* ======================================
   Premium Professional Animations
   ====================================== */

/* Shimmer effect for premium elements */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(254, 234, 158, 0.15), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse glow animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(254, 234, 158, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(254, 234, 158, 0.4);
    }
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Scale on hover */
.hover-scale {
    transition: transform var(--transition-normal);
}

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

/* Lift on hover */
.hover-lift {
    transition: all var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Premium card style */
.premium-card {
    background: var(--bg-card);
    border: 1px solid rgba(254, 234, 158, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
}

.premium-card:hover {
    border-color: rgba(254, 234, 158, 0.25);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-5px);
}

/* Glassmorphism effect */
.glass {
    background: rgba(52, 72, 47, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(254, 234, 158, 0.1);
}

.glass-strong {
    background: rgba(52, 72, 47, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(254, 234, 158, 0.15);
}

/* Gold accent line */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.gold-line-center {
    margin-left: auto;
    margin-right: auto;
}

/* Premium button styles */
.btn-premium {
    background: var(--gradient-primary);
    color: var(--text-on-gold);
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(254, 234, 158, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 234, 158, 0.4);
}

.btn-outline-premium {
    background: transparent;
    color: var(--color-primary);
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-outline-premium:hover {
    background: var(--color-primary);
    color: var(--text-on-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 234, 158, 0.3);
}

/* Text gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 234, 158, 0.3), transparent);
}

/* Badge styles */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(254, 234, 158, 0.1);
    border: 1px solid rgba(254, 234, 158, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

/* Animated underline for links */
.link-underline {
    position: relative;
    display: inline-block;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.link-underline:hover::after {
    width: 100%;
}

/* Counter animation for stats */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image overlay effects */
.img-overlay {
    position: relative;
    overflow: hidden;
}

.img-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(52, 72, 47, 0.8) 100%);
    z-index: 1;
    transition: opacity var(--transition-normal);
}

.img-overlay:hover::before {
    opacity: 0.7;
}

/* Selection styling */
::selection {
    background: var(--color-primary);
    color: var(--color-base);
}

::-moz-selection {
    background: var(--color-primary);
    color: var(--color-base);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-base-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}