/* Footer Stilleri */

/* Ana footer */
footer {
    background-color: #0F172A;
    color: #fff;
    padding-top: 80px;
    position: relative;
}

/* Footer Logo */
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

/* Footer About */
.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sosyal İkonlar */
.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: translateY(-5px);
    color: #fff;
    border-color: rgba(79, 70, 229, 0.3);
}

/* Footer Başlık */
.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #4F46E5, #8B5CF6);
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: -10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 5px;
}

/* Footer İletişim */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: #4F46E5;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li p {
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Copyright */
.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    font-size: 0.9rem;
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .footer-about {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding-top: 50px;
    }
    
    .copyright {
        text-align: center;
        margin-top: 40px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
