/* ===== فوتر أنيق وفخم ===== */
.site-footer {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(229, 177, 207, 0.2);
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.02);
    width: 100%;
    direction: rtl;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2rem;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f9d7e8, #f5c6db);
    transition: all 0.3s ease;
    transform: translateX(50%);
}

.footer-link:hover {
    color: #db2777;
    transform: translateY(-3px);
    background: rgba(249, 215, 232, 0.2);
}

.footer-link:hover::after {
    width: 70%;
}

.footer-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 5px rgba(219, 39, 119, 0.1));
}

.footer-separator {
    color: #f5c6db;
    font-size: 1.2rem;
    font-weight: 300;
}

.footer-copyright {
    color: #718096;
    font-size: 0.85rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px dashed rgba(229, 177, 207, 0.3);
    width: 100%;
    letter-spacing: 0.3px;
}

/* ===== التجاوب ===== */
@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .footer-separator {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 0.8rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
}
