/* =========================================
   3. VISI & MISI SECTION (FIXED VISIBILITY)
   ========================================= */
.visi-misi-section {
    padding: 80px 0 100px;
    background-color: #f3f4f6; /* Ubah ke abu sedikit lebih gelap biar kartu putih terlihat */
    color: #333333; /* RESET GLOBAL: Paksa semua teks di section ini jadi hitam */
}

/* Judul Section (Visi & Misi) */
.visi-misi-section .section-title h2 {
    color: #111 !important; /* Paksa judul jadi hitam pekat */
}

.visi-misi-section .section-title p {
    color: #666 !important; /* Paksa deskripsi jadi abu tua */
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-top: 40px;
}

/* Kartu Putih */
.vm-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    /* Tambah border tipis biar batas kartu jelas terlihat */
    border: 1px solid #e5e7eb; 
    /* Pertebal shadow sedikit */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color); /* Efek border oranye saat hover */
}

/* Icon Box */
.vm-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: #fff4e6; /* Warna oranye pudar spesifik (fallback) */
    color: #ff8c00; /* Warna oranye spesifik (fallback var) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Judul dalam Kartu */
.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #111 !important; /* Paksa Hitam */
}

/* Teks Paragraf */
.vm-card p {
    color: #555 !important; /* Paksa Abu Gelap */
    line-height: 1.7;
    font-style: italic;
    font-size: 1.05rem;
}

/* List Misi */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start; /* Ikon sejajar di atas */
    gap: 15px;
    margin-bottom: 15px;
    color: #444 !important; /* Paksa Abu Gelap */
    line-height: 1.6;
    font-size: 1rem;
}

/* Ikon Check */
.mission-list i {
    color: #ff8c00; /* Oranye */
    font-size: 1.3rem;
    margin-top: 2px; /* Sesuaikan posisi vertikal */
    flex-shrink: 0;
}

/* Responsive Fix */
@media screen and (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr; /* Tumpuk jadi 1 kolom di HP */
        gap: 20px;
    }
    
    .vm-card {
        padding: 30px;
    }
}