/* ========================================
   ABOUT ME PAGE — PSYCH SERENE
   ======================================== */

#about-me-page {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--ivory);
}

/* Ambient Background Orbs */
.abt-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}
.abt-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: -60px;
  left: -150px;
}
.abt-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--teal);
  bottom: 25%;
  right: -100px;
}

#about-me-page .container {
  position: relative;
  z-index: 1;
}

/* Section Spacing */
.about-section {
  padding: 40px 0;
}

/* Profile Card Widget */
.profile-portrait-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(27, 58, 75, 0.05);
  border: 1px solid rgba(232, 237, 226, 0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Custom premium portait placeholder graphics */
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--mist) 0%, var(--white) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1.5px dashed var(--muted);
  margin-bottom: 24px;
}

.portrait-icon {
  font-size: 72px;
  color: var(--green);
  opacity: 0.8;
  margin-bottom: 12px;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.portrait-badge {
  position: absolute;
  bottom: 15px;
  background: var(--teal);
  color: var(--leaf);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(27, 58, 75, 0.2);
}

.profile-tag-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-tag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text);
  text-align: left;
  background: var(--ivory);
  padding: 10px 14px;
  border-radius: 10px;
}

.profile-tag-item i {
  color: var(--green);
  font-size: 15px;
}

/* Profile Text Content */
.profile-intro-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-intro-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--teal);
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

.profile-intro-wrap h1 em {
  font-style: italic;
  color: var(--green);
}

.profile-title-tag {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: -8px;
}

.intro-lead-para {
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.statement-quote-box {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 8px 30px rgba(27, 58, 75, 0.03);
  border-left: 4px solid var(--green);
  margin-top: 10px;
}

.statement-quote-text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  font-style: italic;
}

/* Credentials (Qualifications & Experience) Section styling */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.credentials-card-ps {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(27, 58, 75, 0.04);
  border: 1px solid rgba(232, 237, 226, 0.8);
}

.credentials-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.credentials-card-title i {
  color: var(--green);
}

.timeline-wrap-ps {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-line {
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1.5px;
  background: var(--mist);
}

.timeline-item-ps {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.15);
  transition: all 0.25s ease;
}

.timeline-item-ps:hover .timeline-dot {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(27, 58, 75, 0.2);
}

.timeline-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.timeline-heading {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 4px;
}

.timeline-sub {
  font-size: 12.5px;
  color: var(--text);
  margin: 0 0 6px;
  font-weight: 500;
}

.timeline-text {
  font-size: 13px;
  color: var(--text);
  margin: 0;
  font-weight: 300;
  line-height: 1.5;
}

/* Approach Pillar Cards styling */
.approach-grid-ps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.approach-card-ps {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 10px 35px rgba(27, 58, 75, 0.03);
  border: 1px solid rgba(232, 237, 226, 0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approach-card-ps:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(74, 103, 65, 0.08);
  border-color: var(--muted);
}

.approach-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.approach-card-ps:hover .approach-card-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

.approach-card-heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.approach-card-text {
  font-size: 13.5px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

/* Anonymous Feedback Carousel styling */
.reviews-card-ps {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 15px 50px rgba(27, 58, 75, 0.05);
  border: 1px solid rgba(232, 237, 226, 0.8);
  text-align: center;
  position: relative;
}

.reviews-carousel-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.review-slide-box {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review-text-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--teal);
  margin-bottom: 16px;
  font-style: italic;
  max-width: 720px;
}

.review-attribution {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

.reviews-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn-ps {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn-ps:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Call to Action Booking Banner */
.about-cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  color: var(--leaf);
  box-shadow: 0 15px 45px rgba(27, 58, 75, 0.15);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.about-cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-cta-box h2 em {
  font-style: italic;
  color: var(--green);
}

.about-cta-box p {
  font-size: 15px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 24px;
  color: rgba(var(--leaf-rgb), 0.8);
}

/* Responsive Scaling rules */
@media (max-width: 991.98px) {
  #about-me-page {
    padding: 100px 0 60px;
  }

  .about-section {
    padding: 30px 0;
  }

  .profile-portrait-card {
    margin-bottom: 30px;
  }

  .credentials-card-ps, .reviews-card-ps {
    padding: 30px 24px;
  }

  .about-cta-box {
    padding: 35px 24px;
  }
}
