/* تنسيقات الفوتر */
.bg-gradient-primary {
    background: linear-gradient(135deg, #2D5A87 0%, #5C9BD5 100%);
}

.icon-accent {
    color: #F4A261;
    margin-left: 8px;
}

footer {
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

footer a:hover {
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

footer .social-icons a {
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3) !important;
}

/* تحسين التجاوب */
@media (max-width: 768px) {
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer .flex {
        justify-content: center;
    }
}
