.footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #8b0000 100%);
            position: relative;
            overflow: hidden;
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
                linear-gradient(45deg, transparent 0%, rgba(139, 0, 0, 0.05) 50%, transparent 100%);
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .footer-section:nth-child(2) {
            animation-delay: 0.2s;
        }

        .footer-section:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .brand-section {
            position: relative;
        }

        .brand-title {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #8b0000, #ff4444, #ffffff, #8b0000);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 3s ease-in-out infinite;
            margin-bottom: 1rem;
            position: relative;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .brand-description {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .agricultural-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .ag-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8b0000, #a00000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            animation: iconFloat 3s ease-in-out infinite;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .ag-icon:nth-child(2) {
            animation-delay: 0.5s;
        }

        .ag-icon:nth-child(3) {
            animation-delay: 1s;
        }

        .ag-icon:hover {
            transform: scale(1.2) rotate(360deg);
            background: linear-gradient(135deg, #a00000, #ff4444);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ffffff;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #8b0000, #ff4444);
            animation: lineExpand 1s ease-out 0.6s forwards;
        }

        @keyframes lineExpand {
            to { width: 60px; }
        }

        .quick-links {
            list-style: none;
        }

        .quick-link {
            margin-bottom: 0.8rem;
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInLeft 0.6s ease-out forwards;
        }

        .quick-link:nth-child(2) { animation-delay: 0.8s; }
        .quick-link:nth-child(3) { animation-delay: 1s; }
        .quick-link:nth-child(4) { animation-delay: 1.2s; }

        @keyframes slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .quick-link a {
            color: #c0c0c0;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .quick-link a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .quick-link a:hover::before {
            left: 100%;
        }

        .quick-link a:hover {
            color: #ff4444;
            transform: translateX(10px);
        }

        .contact-info {
            list-style: none;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #c0c0c0;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .contact-item:nth-child(2) { animation-delay: 0.9s; }
        .contact-item:nth-child(3) { animation-delay: 1.1s; }
        .contact-item:nth-child(4) { animation-delay: 1.3s; }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #8b0000, #a00000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: linear-gradient(135deg, #a00000, #ff4444);
            transform: rotate(360deg);
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #8b0000, #ff4444, #8b0000, transparent);
            animation: borderGlow 2s ease-out 1.5s forwards;
        }

        @keyframes borderGlow {
            to { width: 100%; }
        }

        .copyright {
            color: #888;
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 2s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-leaf {
            position: absolute;
            color: rgba(139, 0, 0, 0.1);
            font-size: 2rem;
            animation: floatAround 15s linear infinite;
        }

        .floating-leaf:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-leaf:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: -5s;
        }

        .floating-leaf:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes floatAround {
            0% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 1.5rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }
            
            .brand-title {
                font-size: 2rem;
            }
            
            .brand-description {
                font-size: 1rem;
            }
            
            .agricultural-icons {
                justify-content: center;
            }
            
            .section-title {
                font-size: 1.25rem;
                text-align: center;
            }
            
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .quick-links, .contact-info {
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
            
            .footer-bottom {
                padding-top: 1.5rem;
            }
            
            .copyright {
                font-size: 0.8rem;
                line-height: 1.5;
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .ag-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .contact-icon {
                width: 35px;
                height: 35px;
            }
        }