/* Footer Enhancements - Modern ve Görsel Çekici Footer Stilleri */

/* Footer Bottom Stilleri */
.footer-bottom {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 2rem 0 !important;
    border-top: 2px solid #dee2e6 !important;
}

.footer-bottom-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    color: #495057 !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
}

/* Social Links Stilleri */
.social-links {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
}

.social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    border-radius: 50% !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.social-link:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0c7cd6 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.social-link i {
    font-size: 1.1rem !important;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* App Store ve Play Store Butonları */
.app-store-link,
.play-store-link {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.app-store-link:hover,
.play-store-link:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0c7cd6 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3) !important;
}

.app-store-link i,
.play-store-link i {
    color: #fff !important;
    font-size: 1.2rem !important;
}

/* Footer Link İkonları */
.footer-links-group ul li a i,
.contact-item i {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: unset !important;
}

/* Footer Başlık Renkleri - Gradient */
.footer-links-group h4 {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: unset !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
}

/* Footer Brand Name Gradient */
.footer-brand-name a {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: unset !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

/* Footer Link Hover Effects */
.footer-links-group ul li a:hover {
    color: #2563eb !important;
    transform: translateX(5px) !important;
    transition: all 0.3s ease !important;
}

.footer-links-group ul li a:hover i {
    background: linear-gradient(135deg, #1d4ed8 0%, #0c7cd6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .footer-bottom p {
        font-size: 0.85rem !important;
    }
} 