/* استایل فوتر */
.site-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    font-family: 'IRANSans', 'IRANSansWeb', 'Vazir', sans-serif;
    margin-top: 50px;
}

.footer-top {
    padding: 50px 0 30px;
    background-color: #2c2c2c;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.footer-links a:hover {
    color: #007bff;
    padding-right: 8px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #b0b0b0;
    font-size: 14px;
}

.footer-contact i {
    color: #007bff;
    margin-left: 10px;
    margin-top: 3px;
    font-size: 16px;
    min-width: 20px;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #007bff;
}

.footer-social h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 18px;
}

.social-icon.eitaa {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* اپلیکیشن‌ها */
.footer-apps h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #3a3a3a;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #4a4a4a;
    font-size: 13px;
}

.app-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.app-btn:hover {
    background-color: #4a4a4a;
    transform: translateX(-5px);
    color: #fff;
}

.app-btn.google-play {
    border-color: #4a90e2;
}

.app-btn.bazaar {
    border-color: #4caf50;
}

.app-btn.myket {
    border-color: #2196f3;
}

/* مجوزها */
.footer-licenses h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.license-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.license-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3a3a3a;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    border: 1px solid #4a4a4a;
    text-decoration: none;
}

.license-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.license-icon:hover {
    background-color: #4a4a4a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* بخش توضیحات */
.footer-about {
    background-color: #252525;
    padding: 40px 0;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
}

.about-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.view-more-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.view-more-link:hover {
    color: #0056b3;
}

.view-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-more-link:hover i {
    transform: translateY(3px);
}

/* بخش پایین */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #3a3a3a;
}

.copyright-text {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.site-url {
    margin: 0;
}

.site-url a {
    color: #007bff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.site-url a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .license-icons {
        justify-content: flex-start;
    }
    
    .about-title {
        font-size: 18px;
    }
    
    .about-content {
        font-size: 13px;
    }
}

