/* =============================================
   GEOGRAFIS PAGE STYLES
   ============================================= */

.geo-bg {
    background: linear-gradient(180deg, var(--grad-blue-start) 0%, var(--grad-blue-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    position: relative;
}

.map-container iframe,
.map-container #mapDesa {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 400;
}

.map-overlay-info h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    color: var(--blue-darker);
    margin-bottom: 5px;
}

.map-overlay-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Batas Wilayah Cards */
.batas-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--blue-desa);
    height: 100%;
}

.batas-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.batas-card .compass-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-desa), var(--blue-darker));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.batas-card:hover .compass-icon {
    transform: rotate(15deg) scale(1.1);
}

.batas-card h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    color: var(--blue-darker);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.batas-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* Info Cards */
.geo-info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.geo-info-card:hover {
    box-shadow: var(--shadow-md);
}

.geo-info-card h5 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    color: var(--blue-darker);
    border-left: 5px solid var(--blue-desa);
    padding-left: 15px;
    margin-bottom: 20px;
}

.geo-info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.geo-info-item:last-child {
    border-bottom: none;
}

.geo-info-item .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue-desa);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
}

.geo-info-item .info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.geo-info-item .info-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Orbitasi Table */
.orbitasi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Poppins', sans-serif;
}

.orbitasi-table thead th {
    background: var(--blue-desa);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
}

.orbitasi-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.orbitasi-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.orbitasi-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.orbitasi-table tbody tr:hover {
    background: var(--blue-light);
}

.orbitasi-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.orbitasi-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }

    .map-overlay-info {
        bottom: 10px;
        left: 10px;
        padding: 10px 15px;
    }

    .batas-card {
        padding: 20px;
    }

    .geo-info-card {
        padding: 20px;
    }
}
