/* Footer adres/telefon bağlantısı + harita modalı + sabit WhatsApp butonu.
   Ayrı dosya: tema CSS'i (style.css / responsive.css) tema güncellemesinde değişebiliyor.
   _Layout'ta tema CSS'lerinden SONRA yüklenir — .go_top override'ı buna dayanıyor. */

.abt_side .footer_address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s ease;
}

.abt_side .footer_address:hover,
.abt_side .footer_address:focus {
    color: #2e9e4f;
    text-decoration: none;
}

.abt_side .footer_address i {
    font-size: 20px;
    line-height: 1.4;
    color: #2e9e4f;
    flex: 0 0 auto;
}

.abt_side .footer_phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #4b5563;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .3px;
    text-decoration: none;
    transition: color .2s ease;
}

.abt_side .footer_phone:hover,
.abt_side .footer_phone:focus {
    color: #2e9e4f;
    text-decoration: none;
}

.abt_side .footer_phone i {
    font-size: 20px;
    color: #2e9e4f;
    flex: 0 0 auto;
}

/* ── harita modalı ── */

.map_modal .modal-dialog {
    max-width: 700px;
}

.map_modal .modal-content {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.map_modal .modal-header {
    background: #2e9e4f;
    color: #fff;
    border-bottom: 0;
    padding: 18px 24px;
}

.map_modal .modal-title {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}

.map_modal .modal-header .close {
    color: #fff;
    opacity: .85;
    text-shadow: none;
    font-size: 26px;
    line-height: 1;
}

.map_modal .modal-header .close:hover {
    opacity: 1;
}

.map_modal .modal-body {
    padding: 20px 24px 24px;
}

.map_modal .map_address {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Oransal kutu: iframe sabit yükseklik yerine kapsayıcıya uyar. */
.map_modal .map_frame {
    position: relative;
    width: 100%;
    padding-top: 62%;
    border-radius: 10px;
    overflow: hidden;
    background: #eef1f4;
}

.map_modal .map_frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map_modal .map_actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.map_modal .map_actions .btn {
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .map_modal .modal-body {
        padding: 16px;
    }

    .map_modal .map_frame {
        padding-top: 80%;
    }

    .map_modal .map_actions .btn {
        width: 100%;
    }
}

/* ── sabit WhatsApp butonu ──
   WhatsApp her zaman görünür, go_top ise yalnız sayfa kaydırılınca çıkar. Bu yüzden
   WhatsApp en altta duruyor, go_top onun ÜSTÜNE alınıyor — aksi halde tema go_top'u
   masaüstünde 110px, mobilde 30px'e koyduğu için mobilde üst üste binerlerdi. */

.wa_float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .38);
    z-index: 101;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wa_float:hover,
.wa_float:focus {
    transform: scale(1.07);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .5);
}

.wa_float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Tema go_top'u masaüstünde 110px, mobilde 30px'e koyuyor; WhatsApp'ın üstüne alıyoruz. */
.go_top {
    bottom: 102px;
}

.go_top:hover {
    bottom: 110px;
}

@media (max-width: 767.98px) {
    .wa_float {
        right: 16px;
        bottom: 20px;
        width: 52px;
        height: 52px;
    }

    .wa_float svg {
        width: 27px;
        height: 27px;
    }

    .go_top {
        bottom: 88px;
    }

    .go_top:hover {
        bottom: 96px;
    }
}
