/* Doctor Profile Page Component Styles - Interactive Liquid Hover Effects */
.doctor-profile-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F0F9FF 50%, #F8FAFC 100%);
  padding: 70px 0 90px 0;
}

.doctor-profile-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  padding: 44px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.doc-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-portrait-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #E0F2FE 0%, #F1F5F9 100%);
  border: 1px solid rgba(0, 102, 204, 0.15);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-portrait-wrapper:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 18px 40px rgba(0, 102, 204, 0.2);
  border-color: rgba(0, 102, 204, 0.4);
}

.doc-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Associated Department Box */
.doc-dept-assoc-box {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  border: 1px solid rgba(0, 102, 204, 0.25);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-dept-assoc-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 102, 204, 0.18);
  border-color: #0066CC;
}

.assoc-box-lbl {
  font-size: 0.76rem;
  font-weight: 800;
  color: #0066CC;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.assoc-box-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assoc-box-desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.4;
  margin: 0;
}

/* Right Main Details */
.doc-dept-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.25);
  color: #0066CC;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.doc-dept-pill-badge:hover {
  background: rgba(0, 102, 204, 0.15);
  transform: scale(1.02);
}

.doc-profile-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 6px;
}

.doc-profile-degrees {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #005229;
  margin-bottom: 24px;
}

/* Doctor Quick Stats Bar */
.doc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.doc-stat-box {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-stat-box:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  border-color: #0066CC;
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.12);
}

.doc-stat-val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: #0066CC;
}

.doc-stat-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Styled Content Blocks with Smooth Elevation */
.doc-info-block {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-info-block:hover {
  background: #FFFFFF;
  transform: translateY(-4px);
  border-color: rgba(0, 102, 204, 0.3);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.08);
}

.doc-block-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-block-title svg {
  width: 22px;
  height: 22px;
  color: #0066CC;
  transition: transform 0.25s ease;
}

.doc-info-block:hover .doc-block-title svg {
  transform: scale(1.12);
}

.doc-bio-text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.doc-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.doc-skill-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-skill-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: #0066CC;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
  background: #FFFFFF;
}

.doc-skill-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(120, 192, 67, 0.15);
  border: 1px solid rgba(120, 192, 67, 0.4);
  color: #78C043;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.doc-skill-card:hover .doc-skill-check {
  transform: scale(1.15);
  background: rgba(120, 192, 67, 0.25);
}

@media (max-width: 1024px) {
  .doctor-profile-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .doc-portrait-wrapper { height: 320px; }
  .doc-skills-grid { grid-template-columns: 1fr; }
  .doc-stats-grid { grid-template-columns: 1fr; }
}
