.profile-completion-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.profile-completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profile-completion-header h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.completion-percentage {
    font-size: 36px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.progress-bar-container {
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    height: 100%;
    border-radius: 50px;
    transition: width 1s ease-in-out;
}

.status-message {
    background: rgba(255,255,255,0.15);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.status-message p {
    margin: 0;
    font-size: 14px;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.section-item {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.section-item i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.section-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-percentage {
    font-size: 18px;
    font-weight: 700;
}

.action-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    text-decoration: none;
}

.action-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sections-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.sections-details.show {
    display: block;
}

.detail-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.missing-fields {
    font-size: 12px;
    color: #ffeb3b;
    margin-top: 5px;
}

.toggle-details {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
}

.quick-stats-card, .account-status-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item i {
    font-size: 24px;
    color: #667eea;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: #2c3e50;
}

.stat-item span {
    font-size: 13px;
    color: #7f8c8d;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.status-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.profile-progress-compact {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.profile-progress-compact:hover {
  transform: scale(1.1);
}

.progress-circle svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Modal Styles */
.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-progress-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.section-progress-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.section-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.section-percentage {
  font-size: 20px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal.show .section-progress-card {
  animation: fadeInUp 0.5s ease forwards;
}

.modal.show .section-progress-card:nth-child(1) { animation-delay: 0.1s; }
.modal.show .section-progress-card:nth-child(2) { animation-delay: 0.2s; }
.modal.show .section-progress-card:nth-child(3) { animation-delay: 0.3s; }
.modal.show .section-progress-card:nth-child(4) { animation-delay: 0.4s; }
.modal.show .section-progress-card:nth-child(5) { animation-delay: 0.5s; }
.modal.show .section-progress-card:nth-child(6) { animation-delay: 0.6s; }
.modal.show .section-progress-card:nth-child(7) { animation-delay: 0.7s; }
.modal.show .section-progress-card:nth-child(8) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
  .profile-progress-compact {
    display: none;
  }
}