/* Pengaduan Tab Styling - Simple & Clean */
.pengaduan-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Simple Header */
.simple-header {
    text-align: center;
    margin-bottom: 50px;
}

.simple-header h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin: 0 0 15px 0;
    font-weight: 600;
}

.simple-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.7;
}

/* Simple Channels */
.simple-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.channel-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.channel-link {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

.channel-icon {
    background: var(--navy);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.channel-info {
    flex: 1;
}

.channel-info h3 {
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.channel-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.7;
}

.channel-link .material-icons {
    color: var(--navy);
    font-size: 20px;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.channel-item:hover .material-icons {
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pengaduan-content {
        padding: 30px 15px;
    }
    
    .simple-header h1 {
        font-size: 2rem;
    }
    
    .channel-link {
        padding: 20px 25px;
        gap: 15px;
    }
    
    .channel-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .channel-info h3 {
        font-size: 1.2rem;
    }
}

/* CSS Variables */
:root {
    --navy: #0b2f64;
    --gold: #FFD700;
    --text-dark: #1f2937;
    --soft: #f1f5f9;
}
