/* FOOTER CSS - NEW CLEAN DESIGN */
:root {
    --footer-bg: #ffffff;
    --footer-text: #666666;
    --footer-heading: #222222;
    --footer-accent: #ff6600;
    --footer-accent-hover: #e65c00;
    --footer-border: #e5e5e5;
    --footer-muted: #777777;
    --footer-icon-bg: #f2f2f2;
    --footer-label: #999999;
}

/* --- FOOTER ANA KAPLAYICI --- */
.site-footer {
    background-color: var(--footer-bg);
    padding: 50px 0 0;
    color: var(--footer-text);
    border-top: 1px solid var(--footer-border);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* --- SÜTUN GENEL STİLLERİ --- */
.footer-col {
    flex: 1;
    min-width: 280px;
}

/* --- BAŞLIK STİLLERİ --- */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-heading);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    color: var(--footer-accent);
}

.footer-title-wrapper {
    display: inline-block;
    border-bottom: 2px solid var(--footer-accent);
    padding-bottom: 5px;
    margin-bottom: 20px;
    width: 100%;
}

/* --- LOGO VE AÇIKLAMA --- */
.logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--footer-muted);
}

/* --- SOSYAL MEDYA İKONLARI --- */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 35px;
    height: 35px;
    background-color: var(--footer-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-accent);
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background-color: var(--footer-accent);
    color: #fff;
}

/* --- MENÜ LİNKLERİ --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none !important;
    color: #666666 !important;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #ff6600 !important;
    padding-left: 5px;
}

.footer-links a::before {
    content: "›";
    color: var(--footer-accent);
    margin-right: 8px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

/* --- İLETİŞİM BİLGİLERİ --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: var(--footer-icon-bg);
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-accent);
    border-radius: 4px;
    font-size: 18px;
}

.contact-text h5 {
    font-size: 12px;
    color: var(--footer-label);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    margin: 0;
}

.contact-text a:hover {
    color: var(--footer-accent);
}

/* --- ALT BAR (TELİF HAKKI) --- */
.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #eee;
    margin-top: 20px;
    line-height: 1.8;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--footer-accent);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .site-footer .container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
        min-width: 100%;
        text-align: left !important;
    }

    .footer-logo-img {
        max-width: 180px;
    }

    .footer-title {
        font-size: 16px;
        justify-content: flex-start !important;
    }

    .footer-title-wrapper {
        text-align: left !important;
    }

    .footer-links {
        text-align: left !important;
        padding-left: 0 !important;
    }

    .footer-links li {
        text-align: left !important;
        display: block !important;
    }

    .footer-links a {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .footer-bottom {
        padding: 15px;
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 0;
    }

    .site-footer .container {
        padding: 0 15px;
        gap: 25px;
    }

    .footer-col {
        min-width: 100%;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    .social-btn {
        width: 32px;
        height: 32px;
    }
}