        /* Footer */
        .site-footer {
            padding: 80px 20px 30px;
            background: linear-gradient(180deg, rgba(5, 0, 2, 0.85) 0%, rgba(10, 2, 5, 0.90) 100%);
            border-top: 1px solid rgba(229, 62, 62, 0.2);
            position: relative;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(229, 62, 62, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section h3 i {
            color: #e53e3e;
            margin-right: 10px;
        }

        .footer-section p {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(229, 62, 62, 0.1);
            border: 1px solid rgba(229, 62, 62, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e53e3e;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #e53e3e;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(229, 62, 62, 0.4);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a i {
            color: #e53e3e;
            width: 20px;
        }

        .footer-links a:hover {
            color: #e53e3e;
            transform: translateX(5px);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(229, 62, 62, 0.15);
            text-align: center;
            color: #64748b;
            font-size: 14px;
        }

        /* Leaflet custom styles */
        .leaflet-popup-content-wrapper {
            background: rgba(15, 23, 42, 0.95);
            color: white;
            border-radius: 12px;
            padding: 8px;
        }

        .leaflet-popup-content {
            margin: 16px;
            font-family: 'Poppins', sans-serif;
        }

        .leaflet-popup-content h3 {
            margin-bottom: 8px;
            color: #e53e3e;
        }

        .leaflet-popup-tip {
            background: rgba(15, 23, 42, 0.95);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px;
            }

            .logo-section img {
                width: 110px;
            }

            .section {
                padding: 80px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .map-section {
                padding: 80px 20px;
            }

            #map {
                height: 350px;
            }

            .map-wrapper {
                padding: 20px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 30px;
            }

            .about-section {
                padding: 80px 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

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

            .site-footer {
                padding: 60px 20px 30px;
            }
        }
        .footer-section h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #ffffff;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section h3 img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .footer-section h3 i {
            color: #e53e3e;
            margin-right: 10px;
        }
