.profile-container{
  max-width: 950px;
  margin: 50px auto;
  padding: 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* hide utility */
.hidden{
  display: none;
}

/* =======================
   VIEW MODE (DISPLAY)
======================= */

.view-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.view-grid p{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 20px 22px;
  border-radius: 18px;
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.12);
}

.view-grid p strong{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.view-grid .full{
  grid-column: span 2;
}

/* EDIT BUTTON */
.edit-btn{
  margin-top: 35px;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.edit-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(56,189,248,0.4);
}

/* =======================
   EDIT MODE
======================= */

.profile-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.profile-grid input,
.profile-grid textarea{
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #f1f5f9;
  font-size: 15px;
  outline: none;
}

.profile-grid input::placeholder,
.profile-grid textarea::placeholder{
  color: #94a3b8;
}

.profile-grid textarea{
  grid-column: span 2;
  height: 110px;
  resize: none;
}

.save-btn{
  margin-top: 35px;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.save-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(34,197,94,0.4);
}

/* ERROR STATE */
input.error,
textarea.error{
  border: 2px solid #ef4444;
  background: rgba(239,68,68,0.15);
}
.profile-container {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 25px;
  backdrop-filter: blur(18px);
}

.step {
  display: none;
  flex-direction: column;
  gap: 18px;
}

.step.active {
  display: flex;
}

.profile-container input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(2,6,23,0.9);
  color: white;
}

.wizard-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Base Button */
.wizard-buttons button {
  flex: 1;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

/* Previous Button */
.wizard-buttons button:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.15);
}

.wizard-buttons button:first-child:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* Next Button */
.wizard-buttons button:last-child {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  color: white;
  box-shadow: 0 10px 25px rgba(99,102,241,0.4);
}

.wizard-buttons button:last-child:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 35px rgba(99,102,241,0.6),
    0 0 25px rgba(6,182,212,0.5);
}

/* Click Effect */
.wizard-buttons button:active {
  transform: scale(0.96);
}


.progress-wrapper {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  margin-bottom: 10px;
}

.progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg,#38bdf8,#818cf8);
  border-radius: 20px;
  transition: width 0.4s ease;
}
