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

/* Doctors Hero Section */
.doctors-hero {
  background: linear-gradient(135deg, #008cd0 0%, #0073ad 100%);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.doctors-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.doctors-hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.doctors-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.doctors-hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

/* Doctors Section */
.doctors-section {
  background: #f8f8f8;
  padding: clamp(15px, 2.5vw, 25px) 16px clamp(50px, 6vw, 70px);
}

.doctors-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.doctors-intro p {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Doctor Card */
.doctor-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.doctor-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Image Background Colors */
.doctor-card__image--yellow {
  background: #FBE285;
}

.doctor-card__image--cyan {
  background: #BCE7F0;
}

.doctor-card__image--pink {
  background: #F0BCE9;
}

.doctor-card__info {
  padding: 24px;
}

.doctor-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #253745;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.doctor-card__specialty {
  font-size: 16px;
  font-weight: 600;
  color: #008cd0;
  margin: 0 0 12px;
  line-height: 1.4;
}

.doctor-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Doctors CTA Section */
.doctors-cta {
  background: #fff;
  border-radius: 20px;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 48px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.doctors-cta__content {
  text-align: center;
}

.doctors-cta__content h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #253745;
  margin: 0 0 12px;
  line-height: 1.3;
}

.doctors-cta__content p {
  font-size: clamp(16px, 2vw, 18px);
  color: #666;
  margin: 0 0 32px;
  line-height: 1.5;
}

.doctors-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 140, 208, 0.32);
  white-space: nowrap;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.doctors-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 140, 208, 0.38);
}

.doctors-cta__btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .doctor-card__image {
    aspect-ratio: 4 / 5;
  }

  .doctors-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .doctors-hero {
    padding: 50px 0 40px;
  }

  .doctors-section {
    padding: 40px 16px;
  }

  .doctors-intro {
    margin-bottom: 32px;
  }

  .doctor-card__info {
    padding: 20px;
  }

  .doctor-card__name {
    font-size: 22px;
  }

  .doctor-card__specialty {
    font-size: 15px;
  }

  .doctor-card__description {
    font-size: 14px;
  }

  .doctors-cta {
    padding: 28px 20px;
  }

  .doctors-cta__btn {
    width: 100%;
    padding: 12px 24px;
  }
}
