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

/* Footer Bottom Stilleri */
.footer-bottom {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 1rem 0 !important;  /* 2rem'den 1rem'e düşürüldü - yarıya indirildi */
    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: 0.5rem !important;  /* 1rem'den 0.5rem'e düşürüldü - yarıya indirildi */
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 0.8rem !important;  /* 0.9rem'den 0.8rem'e düşürüldü */
    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: 2rem !important;  /* 2.5rem'den 2rem'e düşürüldü */
    height: 2rem !important;  /* 2.5rem'den 2rem'e düşürüldü */
    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: 0.9rem !important;  /* 1.1rem'den 0.9rem'e düşürüldü */
    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: 1rem !important;  /* 1.5rem'den 1rem'e düşürüldü */
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;  /* 0.85rem'den 0.75rem'e düşürüldü */
    }
    
    .app-store-link,
    .play-store-link {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    
    .app-store-link i,
    .play-store-link i {
        font-size: 1.1rem !important;
    }
    
    /* App Store Butonları - İkili Yatay Sıra */
    .footer-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        justify-content: center !important;
    }
    
    .footer-badges .app-store-link,
    .footer-badges .play-store-link {
        width: 100% !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Link Başlıkları - İkili Yatay Sıra */
    .footer-col:not(.about) {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .footer-links-group {
        margin-bottom: 1rem !important;
    }
    
    .footer-links-group h4 {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .footer-links-group ul li a {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        padding: 0.75rem 0 !important;  /* 1.5rem'den 0.75rem'e düşürüldü - yarıya indirildi */
    }
    
    .footer-bottom-container {
        padding: 0 1rem !important;
        gap: 1rem !important;
    }
    
    .social-links {
        gap: 0.75rem !important;
    }
    
    .social-link {
        width: 2.2rem !important;
        height: 2.2rem !important;
    }
    
    .social-link i {
        font-size: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .app-store-link,
    .play-store-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        gap: 0.4rem !important;
    }
    
    .app-store-link i,
    .play-store-link i {
        font-size: 1rem !important;
    }
    
    /* App Store Butonları - Mobilde Daha Küçük */
    .footer-badges .app-store-link,
    .footer-badges .play-store-link {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Link Başlıkları - Mobilde İkili */
    .footer-col:not(.about) {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }
    
    .footer-links-group {
        margin-bottom: 0.8rem !important;
    }
    
    .footer-links-group h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .footer-links-group ul li {
        margin-bottom: 0.4rem !important;
    }
    
    .footer-links-group ul li a {
        font-size: 0.8rem !important;
        gap: 0.3rem !important;
    }
    
    .footer-links-group ul li a i {
        font-size: 0.8rem !important;
        width: 1rem !important;
    }
}

@media (max-width: 480px) {
    .footer-bottom-container {
        gap: 1rem !important;
    }
    
    .social-links {
        gap: 0.5rem !important;
    }
    
    .social-link {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    .social-link i {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.7rem !important;  /* 0.75rem'den 0.7rem'e düşürüldü */
    }
    
    .app-store-link,
    .play-store-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
        gap: 0.3rem !important;
    }
    
    .app-store-link i,
    .play-store-link i {
        font-size: 0.9rem !important;
    }
    
    /* App Store Butonları - En Küçük Ekranlarda */
    .footer-badges {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }
    
    .footer-badges .app-store-link,
    .footer-badges .play-store-link {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Link Başlıkları - En Küçük Ekranlarda */
    .footer-col:not(.about) {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.6rem !important;
    }
    
    .footer-links-group h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-links-group ul li {
        margin-bottom: 0.3rem !important;
    }
    
    .footer-links-group ul li a {
        font-size: 0.75rem !important;
        gap: 0.25rem !important;
    }
    
    .footer-links-group ul li a i {
        font-size: 0.75rem !important;
        width: 0.9rem !important;
    }
} 