/* ==========================================================================
   TENTANG KAMI - ELEGANT UNIFIED DESIGN
   ========================================================================== */

/* 1. HERO MINI */
.hero-mini {
    background: linear-gradient(135deg, hsla(224, 64%, 33%, 1) 0%, hsla(221, 83%, 53%, 1) 50%, hsla(224, 64%, 33%, 1) 100%);
    color: white;
    padding: 4rem 1rem 5rem 1rem; /* Padding lebih lega */
    margin-bottom: -3rem; /* Overlap effect ke card bawah */
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-mini h1 {
    margin: 0 0 0.8rem 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-mini p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. LAYOUT CONTAINER */
.content-wrapper {
    padding-bottom: 5rem;
    position: relative;
    z-index: 2; /* Di atas Hero */
}

/* Container utama untuk kartu putih besar */
.about-main-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    padding: 3rem 2rem;
}

@media(max-width: 768px) {
    .about-main-card { padding: 2rem 1.5rem; }
}

/* 3. TYPOGRAPHY & CONTENT STYLE */
.section-title {
    color: #1E3A8A;
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Garis bawah biru kecil di bawah judul */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #3b82f6;
    margin-top: 8px;
    border-radius: 2px;
}

/* Judul pertama tidak perlu margin top */
.section-title.first { margin-top: 0; }

.text-content {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* 4. FITUR HIGHLIGHT (KBBI, Aksara, Daerah) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1e3a8a;
    font-size: 1.2rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* 5. VISI MISI BOX */
.vm-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.vm-box h3 {
    margin-top: 0;
    color: #93c5fd; /* Biru muda */
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.vm-box p, .vm-box li {
    color: #e2e8f0; /* Putih agak abu */
    font-size: 1rem;
    line-height: 1.7;
}

/* 6. CTA (CALL TO ACTION) */
.cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed #cbd5e1;
}

.btn-cta-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
