/* =======================================
   İLETİŞİM BİLGİ KARTI (HARİTA ÜSTÜ)
   Solda görsel kutusu, sağda eşit yükseklikte
   adres / telefon / e-posta paneli
   ======================================= */
.contact_showcase {
    padding: 100px 0 10px;
}

.contact_showcase_card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* --- Sol: Görsel Kutusu --- */
.contact_showcase_media {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.contact_showcase_media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.contact_showcase_card:hover .contact_showcase_media img {
    transform: scale(1.06);
}

/* Görselden bilgi paneline yumuşak geçiş */
.contact_showcase_media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22, 22, 22, 0) 65%, rgba(22, 22, 22, 0.55) 100%);
    pointer-events: none;
}

.media_badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(20, 20, 20, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 185, 62, 0.35);
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.media_badge i {
    color: #f4b93e;
    font-size: 0.9rem;
}

/* --- Sağ: Bilgi Paneli (görselle eşit yükseklik) --- */
.contact_showcase_info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 60px;
}

.info_overline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #f4b93e;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.info_overline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #f4b93e;
}

.info_heading {
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.info_heading span {
    color: transparent;
    -webkit-text-stroke: 2px #f4b93e;
}

.info_lead {
    color: #999999;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Bilgi satırları */
.info_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info_list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info_list a {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 0;
    text-decoration: none;
    transition: all 0.35s ease;
}

.info_icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 185, 62, 0.4);
    color: #f4b93e;
    font-size: 1.3rem;
    transition: all 0.35s ease;
}

.info_list a:hover .info_icon {
    background: #f4b93e;
    border-color: #f4b93e;
    color: #111111;
}

.info_text {
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.35s ease;
}

.info_text strong {
    display: block;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.info_list a:hover .info_text {
    color: #ffffff;
}

.info_arrow {
    margin-left: auto;
    color: #f4b93e;
    font-size: 1.1rem;
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all 0.35s ease;
}

.info_list a:hover .info_arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .contact_showcase {
        padding-top: 80px;
    }

    .contact_showcase_media {
        min-height: 380px;
    }

    .contact_showcase_info {
        padding: 40px 35px;
    }
}

@media (max-width: 767px) {
    .contact_showcase {
        padding-top: 60px;
    }

    /* Mobilde üstte görsel, altta bilgiler */
    .contact_showcase_media {
        min-height: 0;
        height: 260px;
    }

    .contact_showcase_media::after {
        background: linear-gradient(180deg, rgba(22, 22, 22, 0) 60%, rgba(22, 22, 22, 0.7) 100%);
    }

    .contact_showcase_info {
        padding: 35px 25px;
    }

    .info_lead {
        margin-bottom: 25px;
    }

    .info_list a {
        gap: 16px;
        padding: 18px 0;
    }

    .info_icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }

    /* Dokunmatikte hover olmadığından ok her zaman görünür */
    .info_arrow {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Form bölümü başlık vurgusu */
.section-header h1 span {
    color: transparent;
    -webkit-text-stroke: 2px #f4b93e;
}
