/* Single psychiatrist profile — reuses the --gc-* custom properties declared on
   .gc-ps in gc-search.css (this stylesheet is enqueued as its dependency, and
   the page root carries the "gc-ps" class so those variables cascade here). */

.gc-ps-profile {
  padding: 90px 0px;
  /* The site header is an Elementor Theme Builder template rendered as
     position:fixed, z-index:99 (its own .elementor-location-header wrapper
     collapses to 0 height in flow). Elementor's own page content avoids
     overlapping it because every .e-con container defaults to position:relative;
     this plain template needs the same, plus top padding matching the header's
     real rendered height (107px) since nothing here reserves that space for us. */
  position: relative;
  z-index: 1;
}

/* ── Breadcrumb ── */
.gc-ps-breadcrumb {
  padding: 20px 60px;
  font-size: 13px;
  color: var(--gc-text2);
}
.gc-ps-breadcrumb a {
  color: var(--gc-text2);
  text-decoration: none;
}
.gc-ps-breadcrumb a:hover {
  color: var(--gc-navy);
  text-decoration: underline;
}
.gc-ps-breadcrumb-sep {
  margin: 0 8px;
  color: var(--gc-text3);
}
.gc-ps-breadcrumb-current {
  color: var(--gc-navy);
  font-weight: 500;
}

/* ── Profile banner ── */
.gc-ps-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--gc-navy);  
  padding: 30px 60px;
  margin-bottom: 32px;
}
.gc-ps-banner-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gc-ps-banner-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gc-ps-banner-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.gc-ps-banner-line {
  font-size: 12px;
  color: #fff;
  margin-bottom: 12px;
}
.gc-ps-banner-mci {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.gc-ps-banner-badges {
  margin-bottom: 0;
}

/* ── Two-column body ── */
.gc-ps-profile-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  padding: 0px 60px;
}

/* ── Sections ── */
.gc-ps-section {
  margin-bottom: 36px;
}
.gc-ps-section-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gc-navy);
  margin: 0 0 14px;
}
.gc-ps-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gc-navy);
}
.gc-ps-bio p:last-child {
  margin-bottom: 0;
}

/* ── Tag pills (specialisations) ── */
.gc-ps-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gc-ps-tag-pill {
  /* background: var(--gc-offwhite);
  border: 1px solid var(--gc-border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gc-navy); */
  display: inline-block;
    background: #e8f4f2;
    color: #0F6E56;
    font-size: 11px;
    border-radius: 5px;
    padding: 4px 9px;
    margin: 3px 3px 0 0;
    font-weight: 500;
}

/* ── Consultation types ── */
.gc-ps-consult-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gc-ps-consult-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--gc-border);
  border-radius: 10px;
  padding: 16px;
}
.gc-ps-consult-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gc-mint);
  color: var(--gc-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-ps-consult-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gc-navy);
  margin-bottom: 3px;
}
.gc-ps-consult-detail {
  font-size: 13px;
  color: var(--gc-text2);
}
.gc-ps-consult-location {
  font-size: 12px;
  color: var(--gc-text3);
  margin-top: 2px;
}

/* ── Education & Training ── */
.gc-ps-education-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--gc-navy);
  line-height: 1.8;
}

/* ── Booking widget (placeholder) ── */
.gc-ps-booking {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 45, 74, 0.08);
  padding: 24px;
  position: sticky;
  top: 123px; /* clears the 107px fixed site header + 16px gap */
}
.gc-ps-booking-title {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gc-navy);
  margin: 0 0 16px;
}
.gc-ps-booking-prices {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.gc-ps-booking-prices li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gc-border);
  font-size: 14px;
}
.gc-ps-booking-prices li:last-child {
  border-bottom: none;
}
.gc-ps-booking-price-label {
  color: var(--gc-text2);
}
.gc-ps-booking-price-value {
  color: var(--gc-navy);
  font-weight: 600;
}

.gc-ps-booking-placeholder {
  border-top: 1px dashed var(--gc-border);
  padding-top: 18px;
}
button.gc-ps-booking-btn {
  width: 100%;
  background-color: var(--gc-coral);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: not-allowed;
}

button.gc-ps-booking-btn:hover {
  background-color: var(--gc-coral);
  opacity: 0.9;

}
.gc-ps-booking-admin-notice {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #fdf3f1;
  border: 1px solid var(--gc-coral);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gc-navy);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gc-ps-profile {
    padding: 107px 32px 48px;
  }
  .gc-ps-profile-body {
    grid-template-columns: 1fr;
  }
  .gc-ps-booking {
    position: static;
  }
}

@media (max-width: 560px) {
  .gc-ps-profile {
    padding: 95px 0px 20px;
  }
  .gc-ps-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .gc-ps-banner-badges {
    justify-content: center;
  }
  .gc-ps-profile-body{
    padding: 0px 20px;
  }
}
