/* ========================================================= */
/* --- ERKAP KAPI - ANASAYFA HARİTA (PREMIUM LIGHT) --- */
/* ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --gold-primary: #c59d5f;
    --gold-light: #e8cb93;
    --gold-dark: #9b7438;
    --gold-gradient: linear-gradient(135deg, #c59d5f 0%, #e8cb93 50%, #a27a3d 100%);
    --text-dark: #1e242b;
    --text-body: #5a6472;
    --border-subtle: #eae4d9;
}

.harita-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    /* Arka plan görseli eklendi */
    background: linear-gradient(rgba(253, 252, 251, 0.88), rgba(246, 243, 237, 0.88)), url('../uploads/anasayfa/harita/arkaplan.png') center/cover no-repeat;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    direction: ltr !important; /* Arapçada harita ve kart yerleşiminin bozulmasını engeller */
}

.harita-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* ========================================================= */
/* --- BAŞLIK ALANI --- */
/* ========================================================= */

.harita-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.harita-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.harita-title {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.harita-gold-line {
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

/* ========================================================= */
/* --- HARİTA VE ÇERÇEVE YAPISI --- */
/* ========================================================= */

.harita-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 3px 10px rgba(0, 0, 0, 0.03);
    background: #ffffff;
    direction: ltr !important;
}

.harita-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.1) contrast(1.02);
}

/* ========================================================= */
/* --- YOL TARİFİ BİLGİ KARTI --- */
/* ========================================================= */

.harita-info-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 460px;
    z-index: 5;
    transition: all 0.3s ease;
    direction: ltr !important; /* İkon, metin ve buton hizalamasını 3 dilde de sabit tutar */
}

.harita-info-card:hover {
    box-shadow: 0 15px 35px rgba(197, 157, 95, 0.2);
    border-color: rgba(197, 157, 95, 0.4);
}

.harita-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gold-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 15px rgba(197, 157, 95, 0.3);
}

.harita-info-text {
    text-align: left;
}

.harita-info-text h4 {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.harita-info-text p {
    font-size: 12.5px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

.harita-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.harita-btn:hover {
    background: var(--gold-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(155, 116, 56, 0.3);
}

/* ========================================================= */
/* --- RESPONSIVE UYUMLULUK --- */
/* ========================================================= */

@media screen and (max-width: 992px) {
    .harita-wrapper {
        height: 450px;
    }

    .harita-info-card {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media screen and (max-width: 640px) {
    .harita-section {
        padding: 50px 0;
    }

    .harita-container {
        padding: 0 15px;
    }

    .harita-header {
        margin-bottom: 30px;
    }

    .harita-title {
        font-size: 24px;
    }

    .harita-wrapper {
        height: 480px;
        border-radius: 14px;
    }

    .harita-info-card {
        position: absolute;
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 14px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .harita-info-text {
        text-align: center;
    }

    .harita-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .harita-info-text h4 {
        font-size: 15px;
    }

    .harita-info-text p {
        font-size: 11.5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .harita-btn {
        width: 100%;
        justify-content: center;
        padding: 9px 14px;
    }
}