/* ============================================
   MODERN FOOTER - Sade ve Şık Tasarım
   ============================================ */

/* Ana Footer Container */
.modern-footer {
    background: #0f1419;
    color: #e8eaed;
    padding: 4rem 0 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Main Content */
.footer-main {
    padding-bottom: 3rem;
}

/* ============================================
   BRAND SECTION
   ============================================ */
.footer-brand {
    margin-bottom: 2rem;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.brand-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link:active {
    transform: translateY(0);
}

/* ============================================
   FOOTER SECTIONS
   ============================================ */
.footer-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-menu li {
    margin-bottom: 0.625rem;
}

.footer-menu a,
.footer-link-btn {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 0.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.footer-menu a:hover,
.footer-link-btn:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-link-btn:focus {
    outline: none;
    color: #ffffff;
}

/* Contact Link */
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    word-break: break-word;
}

.contact-link i {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-link:hover i {
    color: #ffffff;
}

/* Bug Report Link */
.bug-report-link {
    color: #ef4444 !important;
    transition: color 0.3s ease;
}

.bug-report-link:hover {
    color: #22c55e !important;
}

.bug-report-link i {
    color: inherit;
    transition: color 0.3s ease;
}


/* ============================================
   FOOTER BOTTOM
   ============================================ */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    margin-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.version-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991.98px) {
    .modern-footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        padding-bottom: 2rem;
    }
    
    .brand-description {
        max-width: 100%;
    }
    
}

@media (max-width: 767.98px) {
    .modern-footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .brand-header {
        justify-content: center;
    }
    
    .brand-description {
        text-align: center;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .footer-menu a,
    .footer-link-btn {
        text-align: center;
        justify-content: center;
    }
    
    .contact-link {
        justify-content: center;
    }
    
    
    .footer-bottom {
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}

/* ============================================
   UTILITY OVERRIDES
   ============================================ */
.modern-footer .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}
