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

.wasila-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 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: 100px;
    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: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wasila-social-link:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    color: white;
    border-color: var(--gold);
}

.wasila-footer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.wasila-footer-title-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(251, 191, 36, 0.3));
}

.wasila-footer-title:hover .wasila-footer-title-icon {
    transform: scale(1.2) rotate(10deg);
}

.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.875rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: var(--gold);
}

.wasila-footer-list a:hover i {
    transform: translateX(3px) scale(1.2);
    opacity: 1;
    color: var(--gold);
}

.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-item:hover .wasila-footer-contact-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    border-color: var(--gold);
}

.wasila-footer-contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
}

.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: 2.5rem 0 1rem;
    }
    
    .wasila-footer-container {
        padding: 0 1.25rem;
    }
    
    .wasila-footer-grid {
        gap: 2.5rem;
    }
    
    .wasila-footer-logo-img {
        height: 80px;
    }
    
    .wasila-footer-title {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .wasila-footer-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .wasila-footer-social {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .wasila-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .wasila-footer-list a {
        font-size: 0.95rem;
        padding: 0.625rem 0;
    }
    
    .wasila-footer-contact-item {
        padding: 0.625rem;
        margin-bottom: 1rem;
    }
    
    .wasila-footer-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .wasila-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .wasila-footer-copyright,
    .wasila-footer-made {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .wasila-footer {
        padding: 2rem 0 1rem;
    }
    
    .wasila-footer-container {
        padding: 0 1rem;
    }
    
    .wasila-footer-grid {
        gap: 2rem;
    }
    
    .wasila-footer-logo-img {
        height: 70px;
    }
    
    .wasila-footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .wasila-footer-desc {
        font-size: 0.9rem;
    }
    
    .wasila-social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .wasila-footer-list a {
        font-size: 0.9rem;
    }
    
    .wasila-footer-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .wasila-footer-contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        margin-top: 0;
    }
    
    .wasila-footer-copyright,
    .wasila-footer-made {
        font-size: 0.8rem;
    }
}

