/* Footer Stilleri - Masaüstü */

.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #1e3a73 0%, #224a98 100%);
    padding: 60px 0 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* Footer arka plan dekoratif metin */
.site-footer::before {
    content: 'BÜYÜKKARIŞTIRAN';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: "Bebas Neue", cursive;
    letter-spacing: 15px;
    z-index: 0;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

/* Sol taraf - Menü sütunları */
.footer-menus-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
}

.footer-menu-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Bebas Neue", cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-list li {
    margin: 0;
    padding: 0;
}

.footer-menu-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 4px 0;
    position: relative;
    padding-left: 0;
}

.footer-menu-list a::before {
    content: '•';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.footer-menu-list a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Sağ taraf - Logo ve İletişim */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 150px;
    width: 150px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    display: block !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: flex-end;
    font-size: 13px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-contact-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.footer-contact-item:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(-5px);
}

.footer-contact-label {
    /*font-weight: 600;*/
    margin-right: 5px;
}

/* Alt kısım - Copyright ve Logolar */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-service-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-service-logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.footer-service-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-developer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.footer-developer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-developer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .footer-menus-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .site-footer {
        display: block; /* Mobilde footer göster */
    }
    
    /* Masaüstü iletişim bilgilerini gizle */
    .footer-contact-desktop {
        display: none;
    }
    
    /* Mobil iletişim bilgilerini göster */
    .footer-contact-mobile {
        display: block;
    }
}

/* Masaüstü görünümü */
@media (min-width: 769px) {
    /* Mobil iletişim bilgilerini gizle */
    .footer-contact-mobile {
        display: none;
    }
    
    /* Masaüstü iletişim bilgilerini göster */
    .footer-contact-desktop {
        display: flex;
    }
}

