/* Footer */
.footer {
    background: linear-gradient(135deg, #417588 0%, #2a5298 100%);
    color: white;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #41e2ad;
    border-radius: 2px;
}

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

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

.footer-menu li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #41e2ad;
    transform: translateX(5px);
}

/* Footer Alt Kısım */
.footer-bottom {
    background: linear-gradient(135deg, #417588 0%, #2a5298 100%);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #41e2ad;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    margin-right: 8px;
    color: #41e2ad;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-developer {
    color: #41e2ad;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-developer:hover {
    
    text-decoration: underline;
}

.footer-social {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #41e2ad;
    transform: translateY(-3px);
}


/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-menu li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 25px 0;
        text-align: center;
    }

    .footer-contact,
    .footer-social {
        text-align: center;
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-copyright {
        margin-top: 15px;
    }
}