﻿/* Footer Styles - Premium Design */
        .site-footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: #e2e8f0;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f59e0b 100%);
            opacity: 0.8;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px 20px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            position: relative;
        }

        .footer-title {
            color: #f8fafc;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(59, 130, 246, 0.3);
        }

        .footer-title i {
            color: #3b82f6;
            font-size: 22px;
        }

        .footer-text {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.15);
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .footer-social-icon:hover {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
            border-color: transparent;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links a i {
            color: #3b82f6;
            font-size: 14px;
            width: 20px;
        }

        .footer-links a:hover {
            color: #3b82f6;
            padding-left: 5px;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #cbd5e1;
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-contact i {
            color: #3b82f6;
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-contact a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: #3b82f6;
        }

        .footer-play-store {
            margin-top: 20px;
        }

        .footer-play-store-btn {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .footer-play-store-btn:hover {
            transform: translateY(-3px);
            filter: brightness(1.1);
        }

        .footer-google-play-badge {
            height: 50px;
            width: auto;
            display: block;
        }

        .footer-bottom {
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            padding-top: 25px;
            margin-top: 30px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom-content p {
            color: #94a3b8;
            margin: 0;
            font-size: 14px;
        }

        .footer-bottom-content strong {
            color: #e2e8f0;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #94a3b8;
        }

        .footer-bottom-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #3b82f6;
        }

        .footer-bottom-links span {
            color: #475569;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                padding: 40px 15px 15px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-title {
                font-size: 18px;
            }

            .footer-text,
            .footer-links a,
            .footer-contact li {
                font-size: 14px;
            }

            .footer-google-play-badge {
                height: 45px;
            }
        }

        @media (max-width: 480px) {
            .footer-top {
                gap: 25px;
            }

            .footer-container {
                padding: 30px 10px 10px;
            }

            .footer-google-play-badge {
                height: 40px;
            }
        }
    