/* Consultation Page Styles */

.consultation-page {
  padding-top: 80px;
}

.consultation-page #contact {
  padding-top: 40px;
  padding-bottom: 20px;
}

/* Zmniejszamy wysokość sekcji kontaktowej żeby było widać co jest poniżej */
.consultation-page .contact-layout {
  margin-bottom: 0;
}

/* Process Section */
.process-intro {
  padding: 60px 0;
}

.process-intro-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-intro-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.process-intro-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.process-step-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #4dabf7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.process-step h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0;
}

/* Preparation Section */
.preparation-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.preparation-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.preparation-content > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.preparation-list li {
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.preparation-list li:last-child {
  border-bottom: none;
}

.preparation-list li::before {
  content: "✓";
  color: #4dabf7;
  font-weight: bold;
}

/* Consultant Card */
.consultant-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.consultant-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4dabf7, #1a73e8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
}

.consultant-avatar-wrapper {
  position: relative;
  width: 120px;
  margin: 0 auto 20px;
}

.consultant-avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(99, 102, 241, 0.5);
}

.consultant-status {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  border: 3px solid #0c1334;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.consultant-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.consultant-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .preparation-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
