/* --- HERO BACKGROUND --- */
.mentor-hero {
  position: relative;
  overflow: visible;
  padding: 6rem 1.5rem 3rem;
  color: #fff;
  background: radial-gradient(circle at 20% 40%, #602c6d, #431c52 40%, #d98638 120%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* --- HERO CONTAINER --- */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1.5rem;
}

/* --- LEFT TEXT --- */
.hero-text {
  flex: 1 1 300px;
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-text h1 span {
  color: #ffd699;
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: #f3e9f7;
  line-height: 1.6;
  max-width: 600px;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.6rem;
  background: #fff;
  color: #602c6d;
  padding: 0.95rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.cta-btn:hover {
  background: #d98638;
  color: #fff;
  transform: translateY(-3px);
}

/* --- RIGHT VISUAL --- */
.hero-visual {
  position: relative;
  flex: 1 1 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 6s ease;
}

.main-image:hover img {
  transform: scale(1.06);
}

/* --- GLASS TESTIMONIALS (DESKTOP) --- */
.glass-card {
  position: absolute;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  width: 230px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s cubic-bezier(.2,.9,.3,1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.28);
}

.glass-card.active {
  opacity: 1;
  transform: translateY(0);
}

.glass-card p {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.glass-card h4 {
  font-size: 0.85rem;
  color: #ffd699;
  font-weight: 600;
}

/* Card positions */
.card1 { top: -40px; right: -8px; }
.card2 { bottom: -40px; left: -8px; }
.card3 { top: 40%; left: -2px; }
.card4 { bottom: 10%; right: -12px; }

/* --- MOBILE FADE-IN TESTIMONIALS --- */
.mobile-fade-testimonials {
  display: none;
}

/* --- MOBILE STYLES --- */
@media (max-width: 600px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text { order: 1; }
  .hero-visual { order: 2; margin-top: -3.5rem; }

  .glass-card { display: none; }

  /* Fade-in carousel visible */
  .mobile-fade-testimonials {
    display: block;
    margin-top: 0.2rem;
    text-align: center;
    position: relative;
    min-height: 140px;
  }

  .mobile-fade-testimonials .testimonial {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    left: 0; right: 0; top: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 0.9rem;
    padding: 1.1rem;
    margin: 0 auto;
    width: 88%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }

  .mobile-fade-testimonials .testimonial.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
  }

  .mobile-fade-testimonials p {
    font-size: 1rem;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
  }

  .mobile-fade-testimonials h4 {
    font-size: 0.9rem;
    color: #ffd699;
    margin-top: 0.5rem;
  }

  /* Pagination dots */
  .mobile-fade-testimonials .dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
  }

  .mobile-fade-testimonials .dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .mobile-fade-testimonials .dots span.active {
    background: #ffd699;
    width: 10px;
    height: 10px;
  }
}

/* --- MENTOR WHY --- */
.mentor-why {
  background: radial-gradient(circle at top left, rgba(96,44,109,0.85), rgba(20,10,30,0.95));
  backdrop-filter: blur(12px);
  padding: 5rem 1.5rem;
  text-align: center;
  color: #fff;
}
.mentor-why h2 {
  color: #d98638;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.mentor-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.mentor-item {
  background: rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.mentor-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

/* --- MENTOR WHO --- */
.mentor-who {
  background: #fff;
  color: #333;
  padding: 5rem 1.5rem;
  text-align: center;
}
.mentor-who h2 {
  color: #602c6d;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.mentor-who ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.mentor-who li {
  margin: 0.8rem 0;
  background: rgba(217, 134, 56, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
}

/* --- MENTOR WHAT --- */
.mentor-what {
  background: linear-gradient(to right, rgba(96,44,109,0.8), rgba(217,134,56,0.6));
  padding: 5rem 1.5rem;
  text-align: center;
  color: #fff;
}
.mentor-what h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.mentor-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.mentor-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 1rem;
  width: 260px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.mentor-card:hover {
  transform: translateY(-5px);
}
.emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}


.mentor-journey {
  background: #f5f5f5;
  color: #333;
  padding: 5rem 1.5rem;
  text-align: center;
}
.mentor-journey h2 {
  color: #602c6d;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.journey-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.journey-step {
  background: rgba(217, 134, 56, 0.1);
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-weight: 600;
}
.arrow {
  font-size: 1.8rem;
  color: #602c6d;
}

/* --- MENTOR FAQ --- */
.faq-section {
  background: rgba(96,44,109,0.85);
  backdrop-filter: blur(10px);
  padding: 5rem 1.5rem;
  color: #fff;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.faq-section h2 {
  color: #d98638;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h4 {
  color: #fff;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.faq-item p {
  color: #ddd;
  line-height: 1.6;
}

.mentor-cta {
  background: linear-gradient(to right, #602c6d, #d98638);
  color: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
}

.cta-container-mentor {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1.5s ease;
}

.mentor-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.cta-button {
  display: inline-block;
  background: #fff;
  color: #602c6d;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}