/* ===== PSYCHOMETRIC PAGE STYLES ===== */

/* HERO SECTION */
.psychometric-hero {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: none;
}

/* Desktop banner text - brand color for visibility */
.psychometric-hero .banner-desktop .banner-text {
  color: #222;
}

.psychometric-hero .banner-desktop .banner-text h2 {
  color: #E8402A;
  text-shadow: none;
}

.psychometric-hero .banner-desktop .banner-text p {
  color: #555;
  text-shadow: none;
}

/* Mobile banner text - top aligned with brand colors */
.psychometric-hero .banner-text-mobile {
  top: 42px;
  bottom: auto;
}

.psychometric-hero .banner-text-mobile h2 {
  color: #E8402A;
}

.psychometric-hero .banner-text-mobile h2 span {
  color: #E8402A;
}

.psychometric-hero .banner-text-mobile p {
  color: #555;
}

.psychometric-hero .hero-overlay {
  display: none;
}

.psychometric-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.psychometric-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.psychometric-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.psychometric-hero p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
}

.psychometric-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #E8402A;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.psychometric-hero .hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  background: #F7F6EC;
}

/* ABOUT SECTION */
.psych-about-section {
  padding: 70px 0 40px;
  background: #F7F6EC;
}

.psych-about-section .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #E8402A;
  margin-bottom: 15px;
}

.psych-about-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.psych-about-section .lead-text {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FEATURES GRID */
.features-section {
  padding: 70px 0 40px;
  background: #fff;
}

.feature-card {
  background: #F7F6EC;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #E8402A;
  box-shadow: 0 15px 40px rgba(232,64,42,0.12);
}

.feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.feature-icon.orange { background: #F08C1C; }
.feature-icon.blue { background: #E8402A; }
.feature-icon.green { background: #E8402A; }
.feature-icon.purple { background: #E8402A; }
.feature-icon.cyan { background: #F08C1C; }
.feature-icon.red { background: #E8402A; }

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* MENTOR SECTION */
.mentor-section {
  padding: 70px 0 40px;
  background: #FAEBD7;
}

.mentor-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mentor-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: 4px solid #E8402A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 4px solid #E8402A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  margin: 0 auto 25px;
  display: block;
}

.mentor-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.mentor-card .mentor-title {
  font-size: 16px;
  color: #E8402A;
  font-weight: 600;
  margin-bottom: 25px;
}

.mentor-card .mentor-bio {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
}

/* PROCESS SECTION */
.process-section {
  padding: 70px 0 40px;
  background: #fff;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #E8402A;
  border-radius: 2px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #E8402A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.step-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

/* WHY SECTION */
.why-section {
  padding: 70px 0 40px;
  background: #F7F6EC;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card::before,
.why-card::after {
  display: none !important;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #E8402A;
  box-shadow: 0 15px 40px rgba(232,64,42,0.12);
}

.why-card:hover i,
.why-card:hover h5,
.why-card:hover p {
  opacity: 1;
  transform: none;
}

.why-card i {
  font-size: 40px;
  color: #E8402A;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}

/* FAQ SECTION */
.faq-section {
  padding: 70px 0 40px;
  background: #fff;
}

.faq-section .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.faq-section .accordion-button {
  background: #F7F6EC;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 20px 25px;
  border: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: #E8402A;
  color: #fff;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  padding: 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* CTA SECTION */
.psych-cta-section {
  padding: 80px 0;
  background: #E8402A;
  text-align: center;
}

.psych-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.psych-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.psych-cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #E8402A;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.psych-cta-section .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .psychometric-hero {
    height: auto;
  }
  
  .psychometric-hero h1 {
    font-size: 36px;
  }
  
  .psych-about-section,
  .features-section,
  .mentor-section,
  .process-section,
  .why-section,
  .faq-section {
    padding: 70px 0;
  }
  
  .psych-about-section h2 {
    font-size: 32px;
  }
  
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 4px;
    height: auto;
  }
  
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .psychometric-hero {
    height: auto;
  }
  
  .psychometric-hero h1 {
    font-size: 28px;
  }
  
  .psychometric-hero p {
    font-size: 16px;
  }
  
  .psych-about-section,
  .features-section,
  .mentor-section,
  .process-section,
  .why-section,
  .faq-section {
    padding: 50px 0 30px;
  }
  
  .feature-card,
  .why-card {
    padding: 25px 20px;
    text-align: center;
  }
  
  .feature-card .feature-icon,
  .why-card .why-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-card h4,
  .why-card h4 {
    text-align: center;
  }
  
  .feature-card p,
  .why-card p {
    text-align: left;
  }
  
  .mentor-card {
    padding: 35px 25px;
  }
  
  .psych-cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .psych-about-section,
  .features-section,
  .mentor-section,
  .process-section,
  .why-section,
  .faq-section {
    padding: 40px 0 25px;
  }
  
  .feature-card,
  .why-card {
    padding: 20px 16px;
  }
}
