  /* --- GENEL FOOTER YAPISI --- */
footer {
    border-top: 5px solid #1f3c88;
    padding-top: 25px;
    background-color: #ffffff;
}

.site-footer {
    width: 100%;
    padding: 0 0 20px 0 !important; 
    background-color: #e2e4e6; 
    color: #000;
    margin-top: -2px !important; 
    position: relative;
    z-index: 10;
    display: block;
}

.footer-container {
    max-width: 96%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* --- SOL GRUP --- */
.footer-left-group {
    display: flex;
    flex: 1.5;
    gap: 40px;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 3px;
}

.footer-contact p {
    font-size: 16px; 
    font-weight: 700; 
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-contact a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.footer-contact a:hover { color: #ff0000; }

.directions-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background-color: #000;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    border-radius: 50px;
    transition: 0.4s;
    border: 2px solid #000;
}

.directions-btn:hover {
    background-color: #333;
    transform: scale(1.05);
}

.tursab-img-wrapper img {
    width: 170px;
    height: auto;
    background: #fff;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.tursab-img-wrapper img:hover {
    transform: scale(1.15);
}

/* --- ORTA GRUP --- */
.footer-middle-wrapper {
    display: flex;
    flex: 2;
    justify-content: space-around;
    gap: 30px;
}

.follow-col-center {
    text-align: center;
}

/* SOSYAL MEDYA: Her buton ayrı ayrı büyüyecek */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-media a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.3); /* %30 Büyüme */
}

.social-media a i {
    font-size: 26px;
}

.fa-instagram { color: #E4405F; }
.fa-facebook-f { color: #1877F2; }
.fa-x-twitter { color: #000; }
.fa-youtube { color: #FF0000; }
.fa-tiktok { color: #000; }

/* 3 SATIR YAZI: Siyah başlayıp hover ile büyüme ve renklenme */
.footer-text-lines p {
    font-size: 14px; 
    margin: 8px 0;
    font-weight: 700;

    color: #000; /* Başlangıç rengi siyah */
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: default;
}

.footer-text-lines p:hover {
    transform: scale(1.3); /* %30 Büyüme */
}

.footer-text-lines .hover-red:hover { color: #ff0000; }
.footer-text-lines .hover-orange:hover { color: #f39200; }

/* Koyu camgöbeği yerine canlı Turkuaz rengi eklendi */
.footer-text-lines .hover-cyan:hover { color: #00ced1; }

/* --- MENÜ LİNKLERİ --- */
.links-col ul { list-style: none; padding: 0; margin: 0; }
.links-col ul li { margin-bottom: 8px; }
.links-col ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
}

/* Hover rengi kırmızı (#ff0000) olarak güncellendi */
.links-col ul li a:hover { 
    color: #ff0000; 
    padding-left: 5px; 
}
 


/* --- SAĞ GRUP: HARİTA --- */
.map-col-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.map-wrapper {
    width: 350px;
    height: 160px;
    border: 3px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1100px) {
    .footer-container { flex-direction: column; align-items: center; gap: 40px; text-align: center; }
    .footer-left-group { flex-direction: column; align-items: center; gap: 30px; }
    .footer-middle-wrapper { width: 100%; flex-direction: column; align-items: center; gap: 30px; }
    .map-col-right { align-items: center; width: 100%; }
    .map-wrapper { width: 90%; max-width: 350px; }
}