/* General section styles, steps, mentors, FAQ, and contact */

/* Sections - General */
.section {
  padding: 60px 24px;
}

.section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw + 1rem, 2.4rem);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, var(--neo-primary), transparent);
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  color: var(--neo-text-muted);
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Steps section */
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

.step {
  width: 100%;
  max-width: 370px;
  position: relative;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  background: var(--neo-surface);
  box-shadow: 10px 10px 20px var(--neo-shadow-dark), -10px -10px 20px var(--neo-shadow-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px var(--neo-shadow-dark), -12px -12px 24px var(--neo-shadow-light);
}

.step .num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #000000;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
  flex-shrink: 0;
}

.step .icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--neo-primary);
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.step p {
  color: var(--neo-text-muted);
  line-height: 1.6;
  font-size: 0.875rem;
}

.features {
  background: linear-gradient(135deg, var(--neo-bg), #e8ebf0);
}

/* CTA button below steps */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-cta .neo-button {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* Mentor Section */
.mentors-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mentor-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.mentor-profile-card {
  background: var(--neo-surface);
  border-radius: 24px;
  box-shadow: 10px 10px 20px var(--neo-shadow-dark), -10px -10px 20px var(--neo-shadow-light);
  overflow: hidden;
  padding: 48px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mentor-main-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}

.mentor-photo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mentor-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--neo-bg);
  box-shadow: 8px 8px 16px var(--neo-shadow-dark), -8px -8px 16px var(--neo-shadow-light);
  margin-bottom: 24px;
}

.mentor-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neo-text);
  margin-bottom: 8px;
}

.mentor-title {
  color: var(--neo-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.mentor-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0077b5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity .2s ease;
}

.mentor-linkedin:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.mentor-linkedin svg {
  width: 20px;
  height: 20px;
}

.mentor-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.mentor-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentor-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--neo-text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.mentor-check-icon {
  color: var(--color-primary);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mentor Quote */
.mentor-quote {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(255, 213, 79, 0.05));
  border-left: 4px solid var(--neo-primary);
  border-radius: 12px;
  padding: 24px;
  margin: 0;
  position: relative;
}

.mentor-quote .quote-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 36px;
  color: var(--neo-primary);
  opacity: 0.3;
}

.mentor-quote p {
  margin: 0;
  padding-left: 40px;
  font-style: italic;
  color: var(--neo-text);
  line-height: 1.6;
  font-size: 1rem;
}

/* Mentor Languages */
.mentor-languages {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 8px;
}

.mentor-languages-label {
  font-weight: 600;
  color: var(--neo-text);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 12px;
}

.mentor-languages-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mentor-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neo-text-muted);
  font-size: 0.95rem;
  padding: 8px 14px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  transition: background .2s ease;
  white-space: nowrap;
}

.mentor-language:hover {
  background: rgba(99, 102, 241, 0.1);
}

.mentor-language .fi {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Mentor CTA Button */
.mentor-cta-button {
  margin-top: auto;
  width: 100%;
  font-size: 1.05rem;
}

/* FAQ Styles - Modern Accordion */
.faq {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--neo-surface);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 6px 6px 12px var(--neo-shadow-dark), -6px -6px 12px var(--neo-shadow-light);
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 16px var(--neo-shadow-dark), -8px -8px 16px var(--neo-shadow-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  color: var(--neo-text);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font);
}

.faq-question:hover {
  color: var(--neo-primary);
}

.faq-question:focus {
  outline: 2px solid var(--neo-primary);
  outline-offset: -2px;
  border-radius: 16px;
}

.faq-icon {
  color: var(--neo-text-muted);
  transition: transform .3s ease, color .2s ease;
  font-size: 28px !important;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--neo-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--neo-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Contact Section */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: var(--neo-surface);
  border-radius: 24px;
  box-shadow: 10px 10px 20px var(--neo-shadow-dark), -10px -10px 20px var(--neo-shadow-light);
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-image-wrapper {
  position: relative;
  min-height: 300px;
  display: none;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-wrapper {
  padding: 40px 32px;
}

.contact-form-wrapper h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neo-text);
  margin-bottom: 8px;
}

.contact-methods {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neo-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s ease;
}

.contact-method:hover {
  color: var(--neo-primary);
}

.contact-method-icon {
  color: var(--color-primary);
  font-size: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
