/* Additional styles for enrollment form */
.gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.section-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 1.3rem;
}

.breadcrumb {
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.breadcrumb-item a {
  color: #667eea;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #2A3B4C;
  font-weight: 500;
}

.form-floating > .form-control {
  height: calc(3.8rem + 2px);
  padding: 1.2rem 1rem 0.4rem;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-floating > .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.1);
  outline: none;
}

.form-floating > label {
  padding: 1rem 1rem;
  color: #6c757d;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
  color: #667eea;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.btn-primary.loading .btn-text {
  display: none;
}

.btn-primary.loading .btn-loader {
  display: inline-block !important;
}

.course-meta .meta-item {
  color: #495057;
  font-size: 0.95rem;
}

.price-tag {
  background: linear-gradient(135deg, #f8f9fa, white);
}

/* Responsive */
@media (max-width: 768px) {
  .course-meta {
    flex-direction: column;
    gap: 0.5rem !important;
  }
  
  .price-tag {
    text-align: left !important;
  }
  
  .breadcrumb {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
