/* ==============================================
   Site Footer
   ============================================== */
.site-footer {
    background: #01436b;
    color: #ffffff;
    padding: 80px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Widget Grid - Responsive */
.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Logo + Açıklama + Sosyal */
.footer-brand .footer-logo h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-brand .footer-logo h2 a {
    text-decoration: none;
    color: inherit;
}

.footer-brand .footer-logo span.footer-logo-first {
    color: #ffffff;
}

.footer-brand .footer-logo span.footer-logo-last {
    color: #ff6b00;
}

.footer-description {
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.85;
    margin-bottom: 28px;
}

/* Sosyal İkonlar */
.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #00aaff;
    color: #00aaff;
    transform: translateY(-3px);
}

/* Bölüm Başlıkları */
.footer-widget-area h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-widget-area h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00aaff;
    border-radius: 2px;
}

/* Menüler */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-menu a {
    color: #e0e0e0;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #00aaff;
    padding-left: 6px;
}

/* İletişim Bilgileri */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14.5px;
}

.footer-contact .contact-item p {
    margin: 0;
    line-height: 1.6;
}

.footer-contact i {
    color: #00aaff;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Alt Kısım (Copyright & Linkler) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 0;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-inner p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #00aaff;
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .footer-widgets {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .site-footer {
        padding: 50px 0 0;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-bottom {
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .footer-brand .footer-logo h2 {
        font-size: 24px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-widget-area h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-menu a,
    .footer-contact .contact-item {
        font-size: 14px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-widgets {
        gap: 35px;
        padding-bottom: 35px;
    }
}	