/* =========================================================
   DOCTORS PAGE
   ========================================================= */

.doctors-intro {
  max-width: 720px;
  margin: 0 auto;
}

.doctor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(22, 54, 71, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22, 54, 71, 0.16);
}

.doctor-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.doctor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.doctor-card:hover .doctor-card-img img {
  transform: scale(1.05);
}

.doctor-card-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(22,54,71,0) 0%, rgba(22,54,71,0.75) 100%);
}

.doctor-card-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #163647;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background-color .2s ease, color .2s ease;
}

.doctor-card-social a:hover {
  background: var(--color-primary, #f5730f);
  color: #fff;
}

.doctor-card-body {
  padding: 22px 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.doctor-card-specialty {
  display: inline-block;
  align-self: flex-start;
  background: rgba(74, 170, 194, 0.12);
  color: var(--color-primary, #4aaac2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.doctor-card-name {
  font-size: 19px;
  font-weight: 700;
  color: #163647;
  margin-bottom: 4px;
}

.doctor-card-qualification {
  font-size: 13.5px;
  color: var(--color-primary, #4aaac2);
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-card-desc {
  font-size: 13.5px;
  color: #6b7b83;
  line-height: 1.6;
  margin-bottom: 16px;
}

.doctor-card-book {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px solid var(--color-primary, #4aaac2);
  color: var(--color-primary, #4aaac2);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.doctor-card-book:hover {
  background-color: var(--color-primary, #4aaac2);
  color: #fff;
}

.doctors-cta {
  background: linear-gradient(120deg, #163647 0%, #235066 100%);
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  text-align: center;
}

.doctors-cta h3 {
  color: #fff;
  margin-bottom: 10px;
}

.doctors-cta p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 24px;
}
