/* ============================================
   Wasila Footer - تصميم احترافي
   ============================================ */

.wasila-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.wasila-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--gold), var(--primary-light));
}

.wasila-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wasila-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.wasila-footer-col {
    position: relative;
}

.wasila-footer-about {
    /* About column specific styles */
}

.wasila-footer-links {
    /* Links column specific styles */
}

.wasila-footer-contact {
    /* Contact column specific styles */
}

.wasila-footer-logo {
    margin-bottom: 1.5rem;
}

.wasila-footer-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.wasila-footer-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.wasila-footer-social {
    display: flex;
    gap: 1rem;
}

.wasila-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wasila-social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    color: white;
}

.wasila-footer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.wasila-footer-title-icon {
    font-size: 1rem;
}

.wasila-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wasila-footer-list li {
    margin-bottom: 0.75rem;
}

.wasila-footer-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.wasila-footer-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.wasila-footer-list a i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.wasila-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wasila-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.wasila-footer-contact-icon {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.wasila-footer-contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.wasila-footer-contact-value {
    display: block;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wasila-footer-contact-value:hover {
    color: var(--gold);
}

.wasila-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.wasila-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.wasila-footer-copyright,
.wasila-footer-made {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.wasila-footer-made i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .wasila-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .wasila-footer {
        padding: 2rem 0 1rem;
    }
    
    .wasila-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

