:root {
    --ind5-primary: #0A2FB6;
    --ind5-accent: #00E5FF;
    --ind5-dark: #0F172A;
    --ind5-surface: #FFFFFF;
    --ind5-bg: #F8FAFC;
    --ind5-text-main: #334155;
    --ind5-text-muted: #64748B;
    --ind5-border: #E2E8F0;
    
    --ind5-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --ind5-radius: 24px; /* Sedikit dikurangi agar tidak terlalu membulat ekstrim */
    --ind5-shadow-card: 0 20px 40px -10px rgba(15, 23, 42, 0.08); /* Shadow lebih halus */
    --ind5-transition: all 0.3s ease;
}

body {
    font-family: var(--ind5-font);
    background-color: var(--ind5-bg);
    color: var(--ind5-text-main);
    overflow-x: hidden;
}

/* --- 1. HERO SECTION --- */
.ind5-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 120px 20px 140px; /* Padding ditambah agar lebih lega */
    overflow: hidden;
}

.ind5-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 47, 182, 0.8) 100%);
    z-index: 0;
}

.ind5-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.ind5-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ind5-badge-glow {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--ind5-accent);
    border-radius: 50%;
    left: 14px;
    box-shadow: 0 0 8px var(--ind5-accent);
    animation: ind5Pulse 2s infinite;
}

@keyframes ind5Pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.ind5-title {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Diperkecil agar tidak mendominasi layar */
    font-weight: 700; /* Dibuat 700 (Bold) alih-alih 800 (ExtraBold) agar lebih elegan */
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.ind5-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 300; /* Tipis dan elegan */
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- 2. WRAPPER & MAIN CARD --- */
.ind5-wrapper {
    background: var(--ind5-bg);
}

.ind5-contact-container {
    margin-top: -80px; /* Overlap dikurangi agar tidak terlalu mepet dengan teks */
    position: relative;
    z-index: 10;
}

.ind5-main-card {
    background: var(--ind5-surface);
    border-radius: var(--ind5-radius);
    box-shadow: var(--ind5-shadow-card);
    overflow: hidden;
    position: relative;
}

/* --- 3. MAP COLUMN --- */
.ind5-map-column {
    min-height: 480px;
    position: relative;
    background: #E2E8F0;
}

.ind5-map-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* --- 4. INFO COLUMN --- */
.ind5-info-column {
    background: var(--ind5-surface);
    position: relative;
}

.ind5-info-content {
    padding: clamp(2.5rem, 4vw, 4rem); /* Padding diperhalus */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ind5-section-title {
    font-size: 1.5rem; /* Ukuran diperkecil agar pas dengan kolom */
    font-weight: 700;
    color: var(--ind5-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.ind5-title-line {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--ind5-primary), var(--ind5-accent));
    border-radius: 10px;
}

/* Contact List Items */
.ind5-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 1.5rem;
}

/* Icons box */
.ind5-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: var(--ind5-surface);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--ind5-border);
}

.ind5-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: -1;
}

.ind5-icon-box[data-color="blue"] { color: #2563EB; }
.ind5-icon-box[data-color="blue"]::before { background: #2563EB; }

.ind5-icon-box[data-color="emerald"] { color: #059669; }
.ind5-icon-box[data-color="emerald"]::before { background: #059669; }

.ind5-icon-box[data-color="cyan"] { color: #0891B2; }
.ind5-icon-box[data-color="cyan"]::before { background: #0891B2; }

/* Text Content */
.ind5-text-box {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.ind5-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: var(--ind5-text-muted);
    margin-bottom: 4px;
}

.ind5-value {
    font-size: 1rem; /* Teks lebih rapi dan terbaca */
    font-weight: 500;
    color: var(--ind5-dark);
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.ind5-sub-value {
    font-size: 0.85rem;
    color: var(--ind5-text-muted);
    margin-top: 2px;
}

.ind5-link {
    color: var(--ind5-primary);
    text-decoration: none;
    transition: var(--ind5-transition);
}

.ind5-link:hover {
    color: var(--ind5-accent);
}

/* Jam Kerja Widget */
.ind5-working-hours {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #F8FAFC;
    border: 1px solid var(--ind5-border);
    border-radius: 16px;
    position: relative;
}

.ind5-wh-icon {
    font-size: 1.2rem;
    color: #F59E0B;
}

.ind5-wh-text {
    flex: 1;
}

.ind5-status-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    animation: pulseStatus 2s infinite;
}

/* --- 5. RESPONSIVE --- */
@media (max-width: 991.98px) {
    .ind5-hero { min-height: 400px; padding-top: 80px; }
    .ind5-map-column { height: 350px; min-height: 350px; order: -1; }
    .ind5-contact-container { margin-top: -60px; }
}

@media (max-width: 767.98px) {
    .ind5-hero { min-height: 350px; padding: 70px 15px 100px; }
    .ind5-info-content { padding: 2rem 1.5rem; }
    .ind5-map-column { height: 300px; min-height: 300px; }
    .ind5-value { font-size: 0.95rem; }
}