/* Profil Page - Enhanced Styles */

.profile-section {
    background: #f8f9fa;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.profile-card .profile-logo-wrapper {
    width: 100%;
    text-align: center !important;
    margin-bottom: 1.5rem;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1rem;
}

.profile-card .profile-logo-wrapper img,
.profile-card .profile-logo {
    display: block !important;
    max-width: 200px;
    max-height: 200px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    border-radius: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.profile-card img {
    max-width: 200px;
    border-radius: 10px;
}

.profile-placeholder {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder i {
    color: white;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-list i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #667eea;
}

.profile-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.profile-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
}

.profile-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Visi & Misi Sections */
.visi-misi {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.visi-misi h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.visi-misi h3 i {
    font-size: 1.75rem;
}

.vision-content,
.mission-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.vision-content p,
.mission-content p {
    margin-bottom: 1rem;
}

.vision-content ul,
.mission-content ul,
.vision-content ol,
.mission-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.vision-content li,
.mission-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.vision-content strong,
.mission-content strong {
    color: #2d3748;
    font-weight: 600;
}

/* Opening Hours */
.opening-hours {
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.opening-hours h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.opening-hours h3 i {
    font-size: 1.75rem;
    color: #f59e0b;
}

.hours-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.hours-content p {
    margin-bottom: 0.5rem;
}

.hours-content strong {
    color: #2d3748;
    font-weight: 600;
}

/* Organizational Structure */
.organization-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.org-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.org-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid #667eea;
}

.org-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-placeholder i {
    color: white;
}

.org-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.org-card .position {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.org-card .description {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 2rem;
    color: white;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .profile-content {
        margin-top: 2rem;
    }
    
    .visi-misi,
    .opening-hours {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .profile-content h2 {
        font-size: 1.75rem;
    }
    
    .visi-misi h3,
    .opening-hours h3 {
        font-size: 1.25rem;
    }
    
    .org-card {
        margin-bottom: 1.5rem;
    }
}