/* CSS Variables - Unified Agriculture-themed Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #4CAF50;        /* Main Brand Green */
    --primary-dark: #388E3C;         /* Darker Green */
    --primary-light: #81C784;        /* Lighter Green */
    --primary-color-rgb: 76, 175, 80;
    
    /* Secondary Colors */
    --secondary-color: #FFC107;      /* Brand Yellow */
    --secondary-dark: #FFA000;       /* Darker Yellow */
    --secondary-light: #FFD54F;      /* Lighter Yellow */
    --secondary-color-rgb: 255, 193, 7;
    
    /* Accent Colors */
    --accent-color: #FF5722;         /* Earthy Orange-Red */
    --accent-dark: #E64A19;          /* Darker Orange */
    --accent-light: #FF8A65;         /* Lighter Orange */
    --accent-color-rgb: 255, 87, 34;
    
    /* Earth Tones */
    --earth-brown: #795548;          /* Soil Brown */
    --earth-green: #558B2F;          /* Forest Green */
    --earth-blue: #1976D2;           /* Water Blue */
    
    /* Complementary Colors */
    --sky-blue: #03A9F4;             /* Sky Blue */
    --plant-green: #66BB6A;          /* Plant Green */
    --wheat-yellow: #FFB74D;         /* Wheat Yellow */
    
    /* Theme Colors */
    --theme-home: #4CAF50;           /* Home Theme - Primary Green */
    --theme-about: #2196F3;          /* About Theme - Informative Blue */
    --theme-analytics: #673AB7;      /* Analytics Theme - Data Purple */
    --theme-crops: #FF9800;          /* Crops Theme - Harvest Orange */
    --theme-contact: #388E3C;        /* Contact Theme - Dark Green */
    --theme-features: #F44336;       /* Features Theme - Red */
    --theme-pricing: #009688;        /* Pricing Theme - Teal */
    --theme-weather: #03A9F4;        /* Weather Theme - Sky Blue */
    --theme-inventory: #FF5722;      /* Inventory Theme - Orange-Red */
    --theme-schemes: #8BC34A;        /* Schemes Theme - Light Green */
    --theme-demo: #2196F3;           /* Demo Theme - Blue */
    --theme-dashboard: #673AB7;      /* Dashboard Theme - Purple (same as analytics) */
    
    /* Theme Colors RGB Values (for opacity/transparency) */
    --theme-home-rgb: 76, 175, 80;
    --theme-about-rgb: 33, 150, 243; 
    --theme-analytics-rgb: 103, 58, 183;
    --theme-crops-rgb: 255, 152, 0;
    --theme-contact-rgb: 56, 142, 60;
    --theme-features-rgb: 244, 67, 54;
    --theme-pricing-rgb: 0, 150, 136;
    --theme-weather-rgb: 3, 169, 244;
    --theme-inventory-rgb: 255, 87, 34;
    --theme-schemes-rgb: 139, 195, 74;
    --theme-demo-rgb: 33, 150, 243;
    --theme-dashboard-rgb: 103, 58, 183;
    
    /* UI Colors */
    --text-dark: #212121;            /* Primary Text */
    --text-light: #757575;           /* Secondary Text */
    --text-muted: #9E9E9E;           /* Muted Text */
    --bg-light: #F5F7FA;             /* Background Light */
    --bg-white: #FFFFFF;             /* Background White */
    --border-color: #E0E0E0;         /* Border Color */
    --text-dark-rgb: 33, 33, 33;
    --text-light-rgb: 117, 117, 117;
    --text-muted-rgb: 158, 158, 158;
    --bg-light-rgb: 245, 247, 250;
    --bg-white-rgb: 255, 255, 255;
    
    /* Status Colors */
    --success-color: #4CAF50;        /* Success Color (Green) */
    --warning-color: #FF9800;        /* Warning Color (Orange) */
    --error-color: #F44336;          /* Error Color (Red) */
    --info-color: #2196F3;           /* Info Color (Blue) */
    --success-color-rgb: 76, 175, 80;
    --warning-color-rgb: 255, 152, 0;
    --error-color-rgb: 244, 67, 54;
    --info-color-rgb: 33, 150, 243;
    
    /* Other UI Variables */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --section-padding: 80px 0;
    --mobile-padding: 60px 0;
}

/* Farming Background Animations */
.farming-bg {
    position: relative;
    overflow: hidden;
}

.farming-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(139, 195, 74, 0.03) 100%);
    z-index: 1;
}

/* Tractor Animation */
.tractor-animation {
    position: absolute;
    bottom: 20px;
    left: -80px;
    font-size: 2rem;
    color: rgba(76, 175, 80, 0.3);
    animation: tractorMove 20s linear infinite;
    z-index: 2;
}

@keyframes tractorMove {
    0% { left: -80px; }
    100% { left: calc(100% + 80px); }
}

/* Floating Seeds Animation */
.floating-seeds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.seed {
    position: absolute;
    font-size: 0.8rem;
    color: rgba(139, 195, 74, 0.4);
    animation: seedFloat 15s ease-in-out infinite;
}

.seed:nth-child(1) { left: 10%; animation-delay: 0s; }
.seed:nth-child(2) { left: 20%; animation-delay: 2s; }
.seed:nth-child(3) { left: 30%; animation-delay: 4s; }
.seed:nth-child(4) { left: 40%; animation-delay: 6s; }
.seed:nth-child(5) { left: 50%; animation-delay: 8s; }
.seed:nth-child(6) { left: 60%; animation-delay: 10s; }
.seed:nth-child(7) { left: 70%; animation-delay: 12s; }
.seed:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes seedFloat {
    0% { top: 110%; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: -10%; opacity: 0; transform: rotate(360deg); }
}

/* Growing Crops Animation */
.growing-crops {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
}

.crop {
    position: absolute;
    bottom: 0;
    font-size: 1.5rem;
    color: rgba(76, 175, 80, 0.4);
    animation: cropGrow 8s ease-in-out infinite;
}

.crop:nth-child(1) { left: 5%; animation-delay: 0s; }
.crop:nth-child(2) { left: 15%; animation-delay: 1s; }
.crop:nth-child(3) { left: 25%; animation-delay: 2s; }
.crop:nth-child(4) { left: 35%; animation-delay: 3s; }
.crop:nth-child(5) { left: 45%; animation-delay: 4s; }
.crop:nth-child(6) { left: 55%; animation-delay: 5s; }
.crop:nth-child(7) { left: 65%; animation-delay: 6s; }
.crop:nth-child(8) { left: 75%; animation-delay: 7s; }
.crop:nth-child(9) { left: 85%; animation-delay: 8s; }
.crop:nth-child(10) { left: 95%; animation-delay: 9s; }

@keyframes cropGrow {
    0% { transform: scale(0.5) translateY(20px); opacity: 0.3; }
    50% { transform: scale(1.2) translateY(-5px); opacity: 0.8; }
    100% { transform: scale(1) translateY(0); opacity: 0.4; }
}

/* Weather Elements Animation */
.weather-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.weather-icon {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: weatherFloat 12s ease-in-out infinite;
}

.sun-icon {
    color: #FFC107;
    top: 10%;
    right: 15%;
    animation: sunRotate 20s linear infinite;
}

.cloud-icon {
    color: #90CAF9;
    top: 20%;
    left: 20%;
    animation: cloudMove 25s ease-in-out infinite;
}

.rain-icon {
    color: #42A5F5;
    top: 30%;
    right: 30%;
    animation: rainFall 8s ease-in-out infinite;
}

@keyframes sunRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cloudMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

@keyframes rainFall {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(15px); opacity: 0.6; }
}

@keyframes weatherFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Farm Tools Animation */
.farm-tools {
    position: absolute;
    top: 50%;
    right: -60px;
    font-size: 1.8rem;
    color: rgba(139, 69, 19, 0.2);
    animation: toolRotate 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes toolRotate {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-50%) rotate(15deg); }
}

/* Wheat Field Animation */
.wheat-field {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
    z-index: 2;
}

.wheat-stalk {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 30px;
    background: rgba(139, 195, 74, 0.3);
    animation: wheatSway 4s ease-in-out infinite;
}

.wheat-stalk:nth-child(odd) { animation-delay: 0.5s; }
.wheat-stalk:nth-child(1) { left: 8%; height: 25px; }
.wheat-stalk:nth-child(2) { left: 12%; height: 35px; }
.wheat-stalk:nth-child(3) { left: 16%; height: 28px; }
.wheat-stalk:nth-child(4) { left: 20%; height: 32px; }
.wheat-stalk:nth-child(5) { left: 24%; height: 30px; }
.wheat-stalk:nth-child(6) { left: 28%; height: 26px; }
.wheat-stalk:nth-child(7) { left: 32%; height: 34px; }
.wheat-stalk:nth-child(8) { left: 36%; height: 29px; }

@keyframes wheatSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* Butterfly Animation */
.butterfly {
    position: absolute;
    font-size: 1rem;
    color: rgba(233, 30, 99, 0.4);
    animation: butterflyFly 18s ease-in-out infinite;
    z-index: 3;
}

@keyframes butterflyFly {
    0% { top: 80%; left: 0%; transform: scale(1); }
    25% { top: 60%; left: 30%; transform: scale(1.2); }
    50% { top: 40%; left: 70%; transform: scale(1); }
    75% { top: 60%; left: 90%; transform: scale(1.1); }
    100% { top: 80%; left: 100%; transform: scale(1); }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Full-width sections with boxed content */
.section {
    width: 100%;
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-light);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content-box {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

/* Animated Gradient Backgrounds */
.section-animated {
    background: linear-gradient(-45deg, #f5f7fa, #c3cfe2, #e8f5e8, #fff3e0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

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

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

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

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: var(--bg-white);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    z-index: 1001;
}

.nav-logo i {
    margin-right: 0.4rem;
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.1);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.1);
}

.login-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: var(--border-radius);
    margin-left: 0.5rem;
    font-size: 0.9rem !important;
}

.login-btn:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    animation: float 6s ease-in-out infinite;
}

.hero-graphic i {
    font-size: 8rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Additional animations for hero elements */
@keyframes toolsMove {
    0% { left: -80px; }
    100% { left: calc(100% + 80px); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.floating-element-1 {
    top: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.floating-element-2 {
    top: 60%;
    left: 10%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFC107, #FF9800);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite 1s;
}

.floating-element-3 {
    top: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-element-4 {
    bottom: 20%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #E91E63, #F44336);
    border-radius: 50%;
    animation: float 4.5s ease-in-out infinite 0.5s;
}

/* Features Section */
.features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-mockup {
    display: grid;
    grid-template-columns: 250px 1fr;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    margin-top: 3rem;
}

.dashboard-sidebar {
    background: #2c3e50;
    padding: 2rem 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: #bdc3c7;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-item:hover,
.sidebar-item.active {
    background: #34495e;
    color: white;
}

.sidebar-item i {
    margin-right: 1rem;
    width: 20px;
}

.dashboard-main {
    padding: 2rem;
}

.dashboard-header h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.dash-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.dash-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.dash-card-icon.weather { background: #3498db; }
.dash-card-icon.crop { background: #27ae60; }
.dash-card-icon.alert { background: #e74c3c; }
.dash-card-icon.profit { background: #f39c12; }

.dash-card-icon i {
    color: white;
    font-size: 1.2rem;
}

.dash-card-content h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.dash-card-content p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.dash-card-content small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 10% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--text-dark);
}

.login-form {
    padding: 2rem;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.login-options {
    text-align: center;
    margin: 1rem 0;
}

.login-options a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 0.5rem;
}

.login-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.login-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    background: var(--bg-white);
    padding: 0 1rem;
    color: var(--text-light);
}

/* Particle Background Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; width: 6px; height: 6px; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; width: 8px; height: 8px; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; width: 4px; height: 4px; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; width: 10px; height: 10px; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; width: 5px; height: 5px; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; width: 7px; height: 7px; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; width: 9px; height: 9px; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; width: 6px; height: 6px; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navbar Animation on Scroll */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Full-width Hero Component */
.full-width-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 160px 0 100px;
    background-color: var(--primary-color);
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><path fill="%23ffffff" fill-opacity="0.05" d="M25,5L45,25L25,45L5,25L25,5z M25,12L38,25L25,38L12,25L25,12z"/></svg>'),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 20%);
    background-size: 50px 50px, cover, cover;
    color: white;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 
        inset 0 -10px 20px rgba(0, 0, 0, 0.1),
        0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.full-width-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,176C960,181,1056,171,1152,144C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    opacity: 0.8;
    animation: wavesMove 20s linear infinite;
    transform-origin: bottom center;
    filter: drop-shadow(0 10px 5px rgba(0,0,0,0.1));
}

.full-width-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,176C384,171,480,181,576,197.3C672,213,768,235,864,234.7C960,235,1056,213,1152,202.7C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    opacity: 0.6;
    animation: wavesMove 15s linear infinite reverse;
    transform-origin: bottom center;
    filter: drop-shadow(0 5px 3px rgba(0,0,0,0.07));
}

@keyframes wavesMove {
    0% {
        background-position: 0% bottom;
    }
    100% {
        background-position: 100% bottom;
    }
}

/* Hero animated elements */
.full-width-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.full-width-hero .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    opacity: 0.7;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 4px 16px rgba(255, 255, 255, 0.2),
        inset 0 -4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    perspective: 800px;
}

.full-width-hero .floating-element::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(5px);
    transform: translateZ(10px);
}

.full-width-hero .floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    transform-origin: center bottom;
}

.full-width-hero .floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
    transform-origin: center top;
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    animation: float 15s ease-in-out infinite;
}

.full-width-hero .floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    animation-delay: 2.5s;
    transform-origin: center left;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}

.full-width-hero .floating-element:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 20%;
    animation-delay: 3.5s;
    transform-origin: center right;
    border-radius: 50% 50% 40% 60% / 40% 50% 50% 60%;
}

/* Hero animation for the floating elements */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translateY(-25px) rotate(-5deg) scale(1);
    }
    75% {
        transform: translateY(-10px) rotate(2deg) scale(0.95);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

.full-width-hero .hero-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    animation: fadeIn 1s ease-in-out;
}

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

.full-width-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
}

.full-width-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.1;
    animation: headingReveal 1s ease-out forwards;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 0 10px;
}

@keyframes headingReveal {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.full-width-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: lineGrow 1.5s ease-out forwards;
}

@keyframes lineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

.full-width-hero p {
    font-size: 1.4rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.5s forwards;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-weight: 400;
    backdrop-filter: blur(3px);
    padding: 15px 25px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.full-width-hero .hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.8s forwards;
}

/* Page-specific hero styling - Using the agriculture-themed color palette */
.full-width-hero.home-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><path fill="%23ffffff" fill-opacity="0.05" d="M25,5L45,25L25,45L5,25L25,5z M25,12L38,25L25,38L12,25L25,12z"/></svg>'),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-home), var(--primary-light));
    background-size: 50px 50px, cover, cover, cover;
    box-shadow: 
        inset 0 -15px 30px rgba(0, 0, 0, 0.15),
        0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.full-width-hero.contact-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" fill-opacity="0.2"/></svg>'),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-contact), var(--plant-green));
    background-size: 20px 20px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.about-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect x="13" y="13" width="4" height="4" fill="%23ffffff" fill-opacity="0.1"/></svg>'),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-about), var(--sky-blue));
    background-size: 30px 30px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.analytics-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M10,25 L15,15 L25,20 L30,10" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="2"/></svg>'),
        radial-gradient(circle at 40% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 60% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-analytics), #9575CD);
    background-size: 40px 40px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.crops-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path d="M15,5 C15,15 5,15 5,25 M15,5 C15,15 25,15 25,25" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1.5"/></svg>'),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-crops), var(--wheat-yellow));
    background-size: 30px 30px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.features-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><circle cx="12.5" cy="12.5" r="5" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1"/></svg>'),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-features), var(--accent-light));
    background-size: 25px 25px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.pricing-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 35 35"><text x="17.5" y="20" font-family="Arial" font-size="12" text-anchor="middle" fill="%23ffffff" fill-opacity="0.1">₹</text></svg>'),
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-pricing), #4DB6AC);
    background-size: 35px 35px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.weather-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M10,20 C5,20 5,30 10,30 L25,30 C30,30 30,20 25,20 C25,15 20,10 15,15 C10,10 5,15 10,20 Z" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1.5"/><path d="M15,35 L12,40 M20,35 L20,40 M25,35 L28,40" stroke="%23ffffff" stroke-opacity="0.08" stroke-linecap="round" fill="none"/><circle cx="30" cy="10" r="3" stroke="%23ffffff" stroke-opacity="0.1" fill="none"/></svg>'),
        radial-gradient(circle at 25% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-weather), #81D4FA);
    background-size: 40px 40px, cover, cover, cover;
    box-shadow: 
        inset 0 -15px 30px rgba(0, 0, 0, 0.15),
        0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.full-width-hero.inventory-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><rect x="5" y="5" width="30" height="30" rx="2" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="2"/><rect x="10" y="10" width="20" height="5" rx="1" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1"/><rect x="10" y="20" width="20" height="5" rx="1" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1"/></svg>'),
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 65% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-inventory), var(--accent-light));
    background-size: 40px 40px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

.full-width-hero.schemes-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M20,5 L35,20 L20,35 L5,20 Z" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1"/><circle cx="20" cy="20" r="10" stroke="%23ffffff" stroke-opacity="0.08" fill="none" stroke-width="1"/></svg>'),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-schemes), #AED581);
    background-size: 40px 40px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

/* Dashboard Theme Hero Styling */
.full-width-hero.dashboard-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect x="10" y="10" width="40" height="10" rx="2" stroke="%23ffffff" stroke-opacity="0.05" fill="none" stroke-width="1"/><rect x="10" y="25" width="18" height="25" rx="2" stroke="%23ffffff" stroke-opacity="0.05" fill="none" stroke-width="1"/><rect x="32" y="25" width="18" height="12" rx="2" stroke="%23ffffff" stroke-opacity="0.05" fill="none" stroke-width="1"/><rect x="32" y="40" width="18" height="10" rx="2" stroke="%23ffffff" stroke-opacity="0.05" fill="none" stroke-width="1"/></svg>'),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-dashboard), #9575CD);
    background-size: 60px 60px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

/* Demo Theme Hero Styling */
.full-width-hero.demo-theme {
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path d="M15,5 L15,25 M5,15 L25,15" stroke="%23ffffff" stroke-opacity="0.1" fill="none" stroke-width="1"/><circle cx="15" cy="15" r="10" stroke="%23ffffff" stroke-opacity="0.05" fill="none" stroke-width="0.5"/></svg>'),
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        linear-gradient(135deg, var(--theme-demo), #64B5F6);
    background-size: 30px 30px, cover, cover, cover;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.15);
}

/* Common agricultural-themed overlay for all heroes */
.full-width-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ffffff" fill-opacity="0.03" d="M95,0H5v100h90V0z M91,96H9V4h82V96z"/><path fill="%23ffffff" fill-opacity="0.02" d="M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50s50-22.4,50-50S77.6,0,50,0z M50,96c-25.4,0-46-20.6-46-46s20.6-46,46-46s46,20.6,46,46S75.4,96,50,96z"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 992px) {
    .full-width-hero h1 {
        font-size: 3rem;
    }
    
    .full-width-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .full-width-hero {
        padding: 100px 0 60px;
    }
    
    .full-width-hero h1 {
        font-size: 2.5rem;
    }
    
    .full-width-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .full-width-hero {
        padding: 80px 0 50px;
    }
    
    .full-width-hero h1 {
        font-size: 2rem;
    }
    
    .full-width-hero p {
        font-size: 1rem;
    }
}

/* Utility classes for responsive design */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

@media (max-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
    .d-md-grid { display: grid; }
    
    .text-md-center { text-align: center; }
}

@media (max-width: 480px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
    .d-sm-flex { display: flex; }
    .d-sm-grid { display: grid; }
    
    .text-sm-center { text-align: center; }
}

/* Responsive Design */
@media (max-width: 1024px) {    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero-container {
        gap: 3rem;
    }

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

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

    .dashboard-mockup {
        grid-template-columns: 200px 1fr;
    }

    .sidebar-item {
        padding: 0.75rem 1.5rem;
    }

    .sidebar-item span {
        font-size: 0.9rem;
    }
}

/* Large tablet/small desktop responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 0.15rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 6rem 2rem 2rem;
        gap: 0;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size:  1.1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .login-btn {
        margin: 1rem 0 !important;
        display: inline-block !important;
        border-bottom: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--mobile-padding);
    }

    .hamburger {
        display: flex;
    }    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 6rem 2rem 2rem;
        gap: 0;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .login-btn {
        margin: 1rem 0 !important;
        display: inline-block !important;
        border-bottom: none !important;
    }    .nav-container {
        padding: 1rem 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .content-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }    .hero {
        padding: 40px 0;
        min-height: 70vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .dashboard-mockup {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem 0;
    }

    .sidebar-item {
        padding: 1rem;
        justify-content: center;
    }

    .sidebar-item span {
        display: none;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .content-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }    .hero {
        padding: 30px 0;
        min-height: 60vh;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 5rem;
    }

    .features,
    .dashboard-preview,
    .pricing,
    .contact {
        padding: 50px 0;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dash-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .dash-card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

    .nav-menu {
        padding: 5rem 1rem 2rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

/* Navigation responsive handling */
@media (max-width: 1300px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
    }
}

/* Hero badge styling */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 3s infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero highlights styling */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.25);
}

.highlight-item i {
    font-size: 1.1rem;
}

/* Hero decorations */
.hero-decoration-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="400" viewBox="0 0 100 400"><path d="M0,0 L80,100 L0,200 L80,300 L0,400" stroke="%23ffffff" stroke-opacity="0.05" stroke-width="2" fill="none"/></svg>');
    background-repeat: repeat-y;
    opacity: 0.6;
    pointer-events: none;
}

.hero-decoration-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="400" viewBox="0 0 100 400"><path d="M100,0 L20,100 L100,200 L20,300 L100,400" stroke="%23ffffff" stroke-opacity="0.05" stroke-width="2" fill="none"/></svg>');
    background-repeat: repeat-y;
    opacity: 0.6;
    pointer-events: none;
}

/* Animated icons in hero */
.hero-animated-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.animated-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    animation: iconFloat 10s ease-in-out infinite;
}

.animated-icon i {
    transform: perspective(400px) rotateY(10deg);
    transition: all 0.3s ease;
}

.phone-icon {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mail-icon {
    top: 15%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 2.2rem;
}

.chat-icon {
    bottom: 25%;
    left: 20%;
    animation-delay: 2.5s;
    font-size: 1.8rem;
}

.location-icon {
    bottom: 20%;
    right: 10%;
    animation-delay: 3.5s;
    font-size: 2.4rem;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}
