/* Modern Footer CSS */
.footer-top {
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.footer-brand h5 {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.footer-top h6 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-top h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 10px;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

/* Footer sosyal medya simge stilleri */
.footer-top .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-top .btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer liste stilleri */
.footer-top .list-unstyled li {
    margin-bottom: 8px;
}

.footer-top .list-unstyled a {
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-top .list-unstyled a:hover {
    padding-left: 5px;
}

/* Footer iletişim ikonu stilleri */
.contact-list .text-primary {
    transition: all 0.3s ease;
}

.contact-list li:hover .text-primary {
    transform: scale(1.2);
}

/* Alt footer */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom a {
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color) !important;
}

/* Responsive düzenlemeler */
@media (max-width: 767.98px) {
    .footer-top h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-top h6 {
        text-align: center;
    }
    
    .footer-top .list-unstyled {
        text-align: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
}
