﻿/* Modern Footer Stilleri */
.footer-modern-v2 {
    background: linear-gradient(135deg, #1e2a78 0%, #0f1a5a 100%);
    color: #e0e8ff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: rgba(255, 255, 255, 0.1);
    transform: rotate(180deg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(67, 97, 238, 0.4));
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c5ff;
    margin-bottom: 25px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

    .link-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #4361ee 0%, transparent 100%);
    }

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .link-group ul li {
        margin-bottom: 12px;
    }

        .link-group ul li a {
            color: #b8c5ff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

            .link-group ul li a i {
                font-size: 1.2rem;
                color: #4361ee;
                transition: all 0.3s ease;
            }

            .link-group ul li a:hover {
                color: #ffffff;
                transform: translateX(5px);
            }

                .link-group ul li a:hover i {
                    color: #5a74ff;
                }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #8e9eff;
    margin: 0;
}

.footer-copyright .highlight {
    color: #ffffff;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        color: #8e9eff;
        font-size: 1.2rem;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            color: white;
            background: rgba(103, 132, 255, 0.2);
            transform: translateY(-3px);
        }

/* Responsive Tasarım */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
