
        body {
            background: #f5f7fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ===== MODERN FOOTER ===== */
        .footer-container {
            background-color: #474d47; /* Kept as requested */
            color: #e0e0e0;
            font-size: 16px;
            /* line-height: 1.6; */
            padding: 60px 20px 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #50ff4d, #236c1a, #4dff63);
            z-index: 1;
        }

        /* ===== FOOTER GRID LAYOUT ===== */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ===== FOOTER SECTIONS ===== */
        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            color: white;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #05b305;
        }

        /* ===== CONTACT INFO STYLING ===== */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: transform 0.3s ease, color 0.3s ease;
            padding: 8px 0;
            border-radius: 6px;
            cursor: pointer;
        }

        .contact-item:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .contact-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #4dff85, #1a6c2f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 14px;
        }

        .contact-text {
            color: #e0e0e0;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .contact-item:hover .contact-text {
            color: #05b305;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(77, 255, 124, 0.3);
        }

        /* Email & Phone Links */
        .contact-text a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .contact-text a:hover {
            color: #50ff4d;
            text-decoration: underline;
        }

        /* Working Hours & Company Info */
        .working-hours, .company-info {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: #b0b0b0;
        }

        .working-hours i, .company-info i {
            color: #05b305;
            font-size: 16px;
        }

        /* ===== BENCYDETECHS SECTION ===== */
        .benclydetechs {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            padding-top: 10px;
        }

        .benclyde-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease;
        }

        .benclyde-brand:hover {
            transform: translateX(5px);
        }

        img.benclyde-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid #05b305;
            object-fit: cover;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        img.benclyde-img:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(77, 255, 95, 0.4);
        }

        .product-bc {
            color: #a0a0a0;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .benclyde-brand:hover .product-bc {
            color: #05b305;
        }

        /* ===== COPYRIGHT BAR ===== */
        .footer-bottom {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            color: #a0a0a0;
        }

        .footer-bottom p {
            margin: 8px 0;
        }

        /* ===== SOCIAL MEDIA ICONS ===== */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-link:hover {
            background: #05b305;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(77, 255, 104, 0.4);
        }

        .social-link.facebook:hover { background: #05b305; }
        .social-link.twitter:hover { background: #05b305; }
        .social-link.instagram:hover { background: #05b305; }
        .social-link.linkedin:hover { background: #05b305; }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .footer-container {
                padding: 40px 15px 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .benclyde-brand {
                flex-direction: column;
                align-items: flex-start;
            }

            img.benclyde-img {
                width: 60px;
                height: 60px;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-section {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-bottom: -26px;
            }

            .footer-container {
                padding: 30px 10px 25px;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }
            
            .benclydetechs {
                display: flex;
                align-items: center;
            }

            .contact-text {
                font-size: 0.9rem;
            }

            .contact-text a {
                font-size: 0.95rem;
            }

            .product-bc {
                font-size: 0.9rem;
                text-align: center;
            }

            .benclyde-brand {
                align-items: center;
                text-align: center;
            }

            img.benclyde-img {
                width: 50px;
                height: 50px;
            }

            .social-links {
                gap: 10px;
            }

            .social-link {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-section {
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }

        /* Hover effect for entire footer items */
        .contact-item, .working-hours, .company-info, .benclyde-brand {
            position: relative;
        }

        .contact-item::before, .working-hours::before, .company-info::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: #4dff53;
            transition: width 0.3s ease;
        }

        .contact-item:hover::before, .working-hours:hover::before, .company-info:hover::before {
            width: 100%;
        }