/* Compact Footer Styles */
    .footer-section {
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        font-size: 0.9rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .text-gradient {
        background: linear-gradient(90deg, #ff6b6b, #ff8e53);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .footer-heading {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #ff6b6b;
    }

    .footer-heading::after {
        display: none;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.2s ease;
    }

    .footer-links a:hover {
        color: #ff6b6b;
        text-decoration: none;
    }

    .contact-item {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: flex-start;
    }

    .contact-item i {
        color: #ff6b6b;
        margin-right: 0.75rem;
        margin-top: 0.2rem;
    }

    .social-icons {
        display: flex;
        gap: 0.5rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .hotline-card {
        background: rgba(255, 107, 107, 0.15);
        border-radius: 8px;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hotline-content {
        display: flex;
        align-items: center;
    }

    .hotline-content i {
        background: linear-gradient(90deg, #ff6b6b, #ff8e53);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        font-size: 1.1rem;
    }

    .hotline-content .number {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .copyright {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer-section {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 1.3rem;
        }

        .hotline-content i {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }

        .hotline-content .number {
            font-size: 1rem;
        }
    }