  /* Site Footer - bharatpropertys style, fully responsive */
        .site-footer {
            background: #f8f8f8;
            margin-top: 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .footer-top {
            padding: 40px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 48px;
            align-items: start;
        }

        .footer-heading {
            font-size: 15px;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }

        .footer-read-more {
            color: #C41E3A;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-read-more:hover {
            text-decoration: underline;
        }

        .footer-network-links {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .footer-network-links a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-network-links a:hover {
            color: #C41E3A;
        }

        .footer-app-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-app-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: #1a1a1a;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: background 0.2s;
        }

        .footer-app-btn:hover {
            background: #333;
            color: white;
        }

        .footer-app-btn i {
            font-size: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: transform 0.2s;
        }

        .footer-social-icon:nth-child(1) { background: #1877f2; }
        .footer-social-icon:nth-child(2) { background: #000; }
        .footer-social-icon:nth-child(3) { background: #0a66c2; }
        .footer-social-icon:nth-child(4) { background: #ff0000; }
        .footer-social-icon:nth-child(5) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

        .footer-social-icon:hover {
            transform: scale(1.05);
        }

        .footer-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-link-list a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-link-list a:hover {
            color: #C41E3A;
        }

        .footer-sep {
            color: #bbb;
            font-size: 12px;
            user-select: none;
        }

        .footer-nav {
            padding: 16px 0;
            border-top: 1px solid #e5e5e5;
        }

        .footer-nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            align-items: center;
            justify-content: center;
        }

        .footer-nav-links a {
            color: #555;
            text-decoration: none;
            font-size: 13px;
        }

        .footer-nav-links a:hover {
            color: #C41E3A;
        }

        .footer-disclaimer {
            padding: 20px 0;
            background: #eee;
        }

        .footer-disclaimer-text {
            font-size: 12px;
            line-height: 1.6;
            color: #555;
        }

        .footer-copyright {
            background: #1a1a1a;
            padding: 16px;
            text-align: center;
        }

        .footer-copyright p {
            font-size: 12px;
            color: #fff;
            margin: 0;
        }

        @media (max-width: 821px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-top {
                padding: 32px 0 24px;
            }

            .footer-link-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .footer-sep {
                display: none;
            }

            .footer-nav-links {
                justify-content: flex-start;
            }

            .footer-nav-links .footer-sep {
                display: none;
            }

            .footer-app-buttons {
                flex-direction: column;
            }

            .footer-app-btn {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 0 12px;
            }

            .footer-heading {
                font-size: 14px;
            }

            .footer-desc,
            .footer-link-list a {
                font-size: 13px;
            }
        }