/**
 * KIA Map – Frontend CSS
 */

/* ── Wrap ──────────────────────────────────────────────────────────────── */
.kiamap-wrap {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e5e7eb;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.kiamap-header {
    background: #1e3a5f;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.kiamap-pin { font-size: 16px; }

.kiamap-nama { font-weight: 700; }

.kiamap-kota {
    font-weight: 400;
    opacity: 0.8;
    font-size: 13px;
}

/* ── Map ───────────────────────────────────────────────────────────────── */
.kiamap-map {
    width: 100%;
    position: relative;
    background: #f0f4f8;
}

/* ── Loading ───────────────────────────────────────────────────────────── */
.kiamap-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    color: #6b7280;
    font-size: 14px;
    gap: 8px;
}

/* ── Error ──────────────────────────────────────────────────────────────── */
.kiamap-error {
    padding: 16px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 13px;
    border-top: 1px solid #fecaca;
}

/* ── Popup ──────────────────────────────────────────────────────────────── */
.kiamap-popup {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    min-width: 120px;
}

.kiamap-popup strong {
    color: #111827;
    font-size: 14px;
}

/* ── Tombol Navigasi ────────────────────────────────────────────────────── */
.kiamap-actions {
    display: flex;
    gap: 0;
    border-top: 1px solid #e5e7eb;
}

.kiamap-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.15s;
    border: none;
    cursor: pointer;
}

.kiamap-btn:first-child {
    border-right: 1px solid #e5e7eb;
}

.kiamap-btn--gmaps {
    background: #fff;
    color: #1a73e8 !important;
}

.kiamap-btn--gmaps:hover {
    background: #f0f7ff;
    color: #1a73e8 !important;
}

.kiamap-btn--waze {
    background: #fff;
    color: #33ccff !important;
}

.kiamap-btn--waze:hover {
    background: #f0fbff;
    color: #33ccff !important;
}

/* ── Leaflet overrides ──────────────────────────────────────────────────── */
.kiamap-map .leaflet-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.kiamap-map .leaflet-popup-content-wrapper {
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}

/* ── Scroll hint (disable scroll wheel) ───────────────────────────────── */
.kiamap-map .leaflet-container:after {
    content: 'Gunakan dua jari untuk zoom peta';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    z-index: 1000;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .kiamap-btn {
        font-size: 12px;
        padding: 10px 8px;
    }
}
