/**
 * Footer Enhanced Styles
 * Dinamik footer için geliştirilmiş CSS
 */

/* Footer Background for Green Theme */
.site-footer {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%) !important;
}

/* Footer About Section */
.footer__about .footer__about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__contact-info {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.footer__contact-info li:last-child {
    margin-bottom: 0;
}

.footer__contact-info li i {
    color: #fff !important;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer__contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contact-info li a:hover {
    color: #fff;
}

/* Footer Social Media */
.footer__social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Logo */
.footer__logo img {
    max-height: 60px;
    width: auto;
}

/* Footer Links Enhancement */
.footer__links li {
    margin-bottom: 8px;
}

.footer__links li:last-child {
    margin-bottom: 0;
}

/* SVG Icon colors */
.footer__links svg path {
    fill: rgba(255, 255, 255, 0.5) !important;
}

.footer__links a:hover svg path {
    fill: #fff !important;
}

.footer__links a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    padding: 2px 0;
}

.footer__links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer__links a span {
    margin-right: 8px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Widget Title Enhancement */
.footer__widget .widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer__widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

/* Copyright Area Enhancement */
.footer__copyright-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer__copyright-text a {
    color: #ff5e14;
    text-decoration: none;
    font-weight: 500;
}

.footer__copyright-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .footer__widget {
        margin-bottom: 40px;
    }
    
    .footer__social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 40px;
    }
    
    .footer__widget {
        margin-bottom: 30px;
        text-align: left;
    }
    
    .footer__widget .widget-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer__contact-info li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer__links a {
        font-size: 13px;
    }
    
    .footer__social {
        justify-content: flex-start;
        gap: 8px;
    }
    
    .footer__social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .footer__copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer__copyright-text {
        font-size: 12px;
        order: 2;
    }
    
    .footer__copyright-img {
        order: 1;
    }
}

@media (max-width: 575px) {
    .footer__contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .footer__contact-info li i {
        margin-right: 0;
        margin-bottom: 2px;
    }
    
    .footer__about-text {
        font-size: 13px;
    }
}