/* ============================================
   FOOTER STYLES - DARK THEME
   ============================================ */

   .new-footer {
    background: var(--main-color);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.new-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
}

.new-footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand-section {
    margin-bottom: 30px;
}

.footer-logo-new {
    max-width: 200px;
    height: auto;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.footer-logo-new:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(251, 222, 45, 0.3);
    color: var(--main-color);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--second-color);
    border-radius: 2px;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: var(--second-color);
    transition: transform 0.3s ease;
}

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

[dir="rtl"] .footer-links-list a:hover {
    transform: translateX(-5px);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

[dir="rtl"] .footer-links-list a:hover i {
    transform: translateX(-3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

[dir="rtl"] .footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.1rem;
}

.footer-contact-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.footer-contact-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-content a:hover {
    color: var(--second-color);
}

.footer-bottom-bar {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright strong {
    color: white;
    font-weight: 600;
}

.footer-copyright a {
    color: var(--second-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--second-color);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .new-footer {
        padding: 50px 0 20px;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-contact-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .new-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo-new {
        max-width: 150px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

