/* Footer Stilleri */ 

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 40px 0 40px;
    margin-top: auto; /* Sticky footer için eklendi */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; /* Sütunlar arası boşluk biraz artırıldı */
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column.about {
    padding-right: 20px; /* İstenen sağ boşluk eklendi */
}

.footer-column.about .footer-logo img {
    height: 35px; /* Logo küçültüldü */
    margin-bottom: 15px;
}

.footer-column.about .general-email {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
}

.footer-column.about .general-email i {
    color: #fff;
    margin-right: 10px;
    width: 20px;
}

.footer-column.about .general-email a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column.about .general-email a:hover {
    color: #fff;
}

.footer-column h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ffff00;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.links a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-column.links a:hover {
    color: #fff; /* Vurgu rengi daha belirgin yapıldı */
    padding-left: 5px;
}

.footer-column.contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-column.contact i {
    color: #fff; /* İkon rengi de link hover ile uyumlu hale getirildi */
    margin-right: 10px;
    width: 20px;
}

/* Şube bilgileri için özel stiller */
.footer-branch {
    margin-bottom: 20px;
}

.footer-branch:last-of-type {
    margin-bottom: 0;
}

.footer-branch .branch-title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-branch .branch-address {
    margin-bottom: 6px;
    margin-left: 30px;
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto; /* Üst dış boşluk azaltıldı */
    padding: 30px 0; /* Üst ve alt iç boşluklar eşitlendi */
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #bdc3c7;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0; /* Paragrafların varsayılan margin'ini sıfırlayarak hizalama sorununu çözer */
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
} 