/* TMX Interactive Map Styles */

.tmx-map-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: radial-gradient(circle at top left, #f5f5f5 0, #ffffff 40%, #f3f4f6 100%);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.18);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tmx-map-svg-wrapper {
    flex: 1 1 420px;
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.tmx-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.tmx-region {
    cursor: pointer;
    transition: fill 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
    opacity: 0.9;
}

.tmx-region:hover {
    fill: #f7941d;
    opacity: 1;
    transform: translateY(-1px);
}

.tmx-region.is-active {
    fill: #f7941d;
    opacity: 1;
}

.tmx-map-content {
    flex: 1 1 320px;
    min-width: 260px;
    background: radial-gradient(circle at top left, #ffffff 0, #f9fafb 45%, #eef2ff 100%);
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: 22px 24px;
    box-sizing: border-box;
}

/* Bölge içerik metninde Enter'ları satır sonu olarak göster */
.tmx-map-region-content {
    font-size: 0.95rem;
    color: #111827;
    line-height: 1.5;
}

.tmx-map-region-content .tmx-region-heading {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.tmx-map-region-content .tmx-region-body {
    font-size: 0.95rem;
    color: #111827;
}

.tmx-map-region-content .tmx-region-body strong {
    font-weight: 700;
}

.tmx-map-region-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.tmx-map-region-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.tmx-map-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tmx-map-contact-card {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.tmx-map-contact-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.tmx-map-contact-email,
.tmx-map-contact-phone {
    font-size: 0.9rem;
    color: #374151;
}

.tmx-map-contact-email a,
.tmx-map-contact-phone a {
    color: #f7941d;
    text-decoration: none;
}

.tmx-map-contact-email a:hover,
.tmx-map-contact-phone a:hover {
    text-decoration: underline;
}

.tmx-map-helper {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Basit iletişim kutusu (örnek: Avrupa ofisi) */
.tmx-contact-box {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 16px 18px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    margin-bottom: 10px;
}

.tmx-contact-box h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #111827;
}

.tmx-contact-box p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: #374151;
}

.tmx-contact-box a {
    color: #f7941d;
    text-decoration: none;
}

.tmx-contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tmx-map-container {
        padding: 16px 10px;
    }

    .tmx-map-content {
        padding: 16px;
    }
}

