/* Footer Stilleri */

/* Footer logo */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

/* Footer container */
.site-footer {
    background: linear-gradient(135deg, var(--secondary), var(--accent-olive));
    color: var(--footer-text, #2c3e50);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
    opacity: 0.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Footer sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000 !important;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--footer-link, #cccccc);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

/* Footer contact */
.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer-contact-item a {
    color: var(--footer-link, #cccccc);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

/* Footer social */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--social-bg, rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary);
    text-align: center;
    color: var(--footer-text-secondary, #2c3e50);
    background: rgba(27, 73, 101, 0.1);
    /* var(--primary) alpha */
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 1rem 0;
}

/* TURSAB image styling */
.footer-tursab img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-top: 10px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .footer-logo,
    .footer-tursab img {
        max-width: 120px;
        margin-bottom: 10px;
    }

    .site-footer {
        padding: 2rem 0 1rem;
    }
}