/* ======================
   TENTANG KAMI SECTION - COMPACT & RESPONSIVE
   ====================== */
.tentang-kami-section {
    position: relative;
    padding: 60px 0;
    background: var(--primary-color);
    overflow: hidden;
}

.tentang-kami-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.tentang-kami-section .section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.tentang-kami-section .section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tentang-kami-section .section-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.tentang-kami-section .text-gradient {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tentang-kami-section .section-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.tentang-kami-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Content Styles */
.tentang-kami-content {
    flex: 1;
    padding-right: 20px;
}

.tentang-kami-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 600;
}

.tentang-kami-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Features Grid */
.tentang-kami-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.feature-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: #e0f2fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin: 15px 0 8px;
    font-weight: 600;
    color: white;
}

.feature-text p {
    color: white;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* Image Styles */
.tentang-kami-image {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.tentang-kami-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: #3b82f6;
    color: white;
}

.tentang-kami-image:hover img {
    transform: scale(1.03);
}

/* Background Elements */
.tentang-kami-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .tentang-kami-grid {
        gap: 30px;
    }
    
    .tentang-kami-content h3 {
        font-size: 1.5rem;
    }
    
    .tentang-kami-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 12px 10px;
    }
}

@media (max-width: 992px) {
    .tentang-kami-section {
        padding: 50px 0;
    }
    
    .tentang-kami-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .tentang-kami-content {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .tentang-kami-image {
        flex: 0 0 auto;
        max-width: 500px;
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }
    
    .tentang-kami-features {
        max-width: 100%;
        margin: 25px auto 0;
    }
}

@media (max-width: 768px) {
    .tentang-kami-section .section-title {
        font-size: 1.8rem;
    }
    
    .tentang-kami-content h3 {
        font-size: 1.4rem;
    }
    
    .tentang-kami-image {
        height: 350px;
    }
    
    .tentang-kami-features {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 400px;
    }
    
    .feature-item {
        text-align: left;
        display: flex;
        align-items: flex-start;
        padding: 12px 15px;
    }
    
    .feature-icon {
        margin: 0 12px 0 0;
        flex-shrink: 0;
    }
    
    .feature-text h4 {
        margin-bottom: 3px;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tentang-kami-section {
        padding: 40px 0;
    }
    
    .tentang-kami-section .section-title {
        font-size: 1.6rem;
    }
    
    .tentang-kami-section .section-description {
        font-size: 0.95rem;
    }
    
    .tentang-kami-content h3 {
        font-size: 1.3rem;
    }
    
    .tentang-kami-image {
        height: 280px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
}
