/* ===========================================================================
   Footer Stilleri (Masaüstü için varsayılan)
   =========================================================================== */
.main-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(79, 142, 247, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(25, 38, 62, 0.97), rgba(18, 27, 43, 0.98));
    color: #e4e7f0;
    margin-top: auto;
    box-shadow: 0 -16px 42px rgba(0, 0, 0, 0.20);
    position: relative;
    z-index: 1;
    font-size: 14px;
    padding: 48px 24px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: none;
    margin-right: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    white-space: nowrap;
}

.footer-links li a {
    color: rgba(228, 231, 240, 0.88);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links li a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex: 2;
}

.footer-center ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-center ul li a {
    color: rgba(228, 231, 240, 0.9);
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: var(--accent2);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    position: relative;
    color: #d8dde4;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social-icons a.ig:hover::before {
    transform: scale(1.3);
    background-color: #c7255b;
}

.footer-social-icons a.ln:hover::before {
    transform: scale(1.3);
    background-color: #0077b5;
}

.footer-social-icons a.fb:hover::before {
    transform: scale(1.3);
    background-color: #1877F2;
}

.footer-social-icons a.x-twitter:hover::before {
    transform: scale(1.3);
    background-color: #000;
}

.footer-bottom-text {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: #9aa1ad;
    margin-top: 30px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-links {
        justify-content: center;
        gap: 14px;
    }

    .footer-links li a {
        font-size: 14px;
    }

    .footer-copyright-text {
        font-size: 13px;
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 24px 16px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-bottom-text {
        font-size: 12px;
    }
}
