/* footer.css */

.smart-footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 50px 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    color: var(--light-color);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-social-icons {
    margin-bottom: 20px;
}

.footer-social-icon {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--primary-color);
}

.footer-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-social-icons {
        margin-top: 20px;
    }
    
}

/* RTL support */
.rtl .smart-footer {
    text-align: right;
}

.rtl .footer-link {
    padding-right: 0;
}

.rtl .footer-social-icon {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .footer-contact-info i {
    margin-right: 0;
    margin-left: 10px;
}