/* Hospital Footer Styles using Theme Colors */
/* New */
    /* Hospital Footer Styles using Theme Colors */
    .footer-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d47 100%);
        color: white;
        padding: 60px 0 20px;
        position: relative;
    }

    .footer-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,
                var(--hover-color),
                var(--primary-color),
                var(--hover-color));
    }

    .text-accent {
        color: var(--hover-color) !important;
    }

    .text-light-gray {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .footer-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .hospital-stats {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        backdrop-filter: blur(10px);
    }

    .footer-title {
        font-size: 1.1rem;
        border-bottom: 2px solid var(--hover-color);
        padding-bottom: 8px;
        display: inline-block;
    }

    .footer-links .footer-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .footer-links .footer-link:hover {
        color: var(--hover-color);
        transform: translateX(5px);
    }

    .footer-links .footer-link i {
        color: var(--hover-color);
        font-size: 10px;
    }

    .emergency-contact {
        background: linear-gradient(135deg, #dc3545, #c82333);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .emergency-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .emergency-number {
        color: white;
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;
    }

    .emergency-number:hover {
        color: #ffeb3b;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        background: var(--hover-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        flex-shrink: 0;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-link:hover {
        background: var(--hover-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(92, 32, 118, 0.3);
    }

    .quick-actions-bar {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .quick-action-btn {
        background: var(--hover-color);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .quick-action-btn:hover {
        background: white;
        color: var(--hover-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .quick-action-btn.emergency {
        background: #dc3545;
        animation: pulse 2s infinite;
    }

    .quick-action-btn.emergency:hover {
        background: white;
        color: #dc3545;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
        }
    }

    .government-links {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gov-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 13px;
        padding: 5px 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .gov-link:hover {
        background: var(--hover-color);
        color: white;
        border-color: var(--hover-color);
    }

    .footer-divider {
        border-color: rgba(255, 255, 255, 0.2) !important;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .footer-section {
            padding: 40px 0 20px;
        }

        .quick-action-btn {
            margin-bottom: 10px;
        }
    }

