/* ==========================================================================
   FOOTER (NÖRO-NAVİGASYON) STİLLERİ
   ========================================================================== */
.site-footer {
    background-color: #0c0c0d; /* Ana Oniks'ten (12,12,14) çok hafif daha derin bir talamik zemin */
    color: #ccc;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: inherit; /* Sitenizin ana fontunu çeker */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px 50px 50px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* --- SOL SÜTUN --- */
.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    margin-bottom: 32px;
}

.footer-slogan {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5px;
    display: inline-block;
}

.footer-main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main-nav li {
    margin-bottom: 12px;
}

.footer-main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-main-nav a i {
    color: #ecde4e; /* Sarı oklar, görsel yönlendirme yapar */
    font-size: 12px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.footer-main-nav a:hover {
    color: #ecde4e;
    transform: translateX(5px);
}

.footer-main-nav a:hover i {
    transform: translateX(3px);
}

/* --- SAĞ SÜTUN --- */
.footer-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer-link-group h4 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-top:0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(236, 222, 78, 0.3); /* Sarı ince çizgi */
    display: inline-block;
}

.footer-link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-group li {
    margin-bottom: 12px;
}

.footer-link-group a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link-group a:hover {
    color: #ecde4e;
}

.footer-link-group a.casting-button {
	margin-left:0;
	margin-top:.25em;
	padding:8px 10px;
	display:inline-block;
	font-weight:500;
}

/* --- ALT ŞERİT VE REFERANSLAR --- */
.footer-bottom {
    background-color: #080808; /* En alt güven hattı */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Mobilde alt alta inmesi için */
}

.footer-copyright {
    font-size: 13px;
    color: #666;
}

.reference-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.reference-icons i {
    font-size: 24px;
    color: #555;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.reference-icons i:hover {
    color: #ecde4e;
    transform: scale(1.1);
}

/* ==========================================================================
   MOBİL VE TABLET UYUMU (RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        padding: 0 30px 40px 30px;
        gap: 40px;
    }
    
    .footer-right {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-link-group {
        min-width: 150px;
    }
    
    .footer-bottom-container {
        flex-direction: column-reverse; /* Mobilde logolar üstte, telif altta görünür */
        gap: 15px;
        text-align: center;
        padding: 0 30px;
    }
}