/* --- EXTRAORDINARY CORPORATE FOOTER --- */
.footer-extraordinary {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0; /* Üstteki silik gri çizgi */
    font-family: 'Poppins', sans-serif;
    padding-top: 0px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
}

.f-grid-item {
    padding: 40px;
    border-right: 1px solid #eee;
}

.f-grid-item:last-child { border-right: none; }

/* Vizyon & Başlık Alanı */
.f-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff8a42;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.f-big-title {
    font-size: 3rem;
    font-weight: 900;
    color: #063970;
    line-height: 1;
    margin-bottom: 25px;
}

.f-big-title span {
    display: block;
    -webkit-text-stroke: 1px #063970;
    color: transparent;
}

.f-lead {
    color: #64748b;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.8;
}

/* Navigasyon Linkleri */
.f-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 40px;
}

.f-nav-links { list-style: none; padding: 0; }
.f-nav-links li { 
    border-bottom: 1px solid #f1f5f9;
    padding: 15px 0;
}

.f-nav-links a {
    color: #063970;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.f-nav-links a span { display: flex; align-items: center; gap: 12px; }
.f-nav-links a span i { width: 24px; color: #ff8a42; }
.f-nav-links a .f-arrow { opacity: 0.4; font-size: 0.8rem; }
.f-nav-links a:hover { color: #ff8a42; padding-left: 10px; }
.f-nav-links a:hover .f-arrow { opacity: 1; transform: translateX(8px); }

/* İletişim Alanı */
.f-contact-card { display: flex; flex-direction: column; gap: 25px; }
.f-c-row { display: flex; gap: 15px; align-items: flex-start; }
.f-c-row i { color: #ff8a42; font-size: 1.2rem; }
.f-c-row span { color: #063970; font-size: 0.9rem; }

/* Sosyal Medya */
.f-social-modern { display: flex; gap: 15px; margin-top: 30px; }
.f-social-modern a {
    width: 45px; height: 45px;
    border: 1px solid #eee;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #063970;
    transition: 0.3s;*    
    background-color: #ffffff;
    padding: 10px 0 10px;
    border-top: 2px solid #f1f5f9;
    font-family: 'Poppins', sans-serif;
}/* Alt kısmın boydan boya çizgiye sahip olması için */
.footer-bottom-extra {
    width: 100%;
    border-top: 1px solid #e2e8f0; /* Boydan boya uzanan gri çizgi */
    margin-top: 0px;
    padding: 5px 0;
}

/* İçeriklerin container içinde sağa ve sola yaslanması */
.f-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-right-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.f-legal-links {
    display: flex;
    gap: 20px;
}

.f-legal-links a {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.f-legal-links a:hover {
    color: #063970;
}

.f-scroll-top {
    cursor: pointer;
    width: 35px;
    height: 35px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #063970;
    transition: 0.3s;
}

.f-scroll-top:hover {
    background: #063970;
    color: #fff;
}