:root {
  --primary: #159EEC;
  --primary-dark: #003B95;
  --accent: #ff0000;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --text: #1f2f4d;
  --muted: #5f738f;
}
main {
    padding: 0px 0;
    min-height: calc(100vh - 300px);
}
body {
  background: var(--surface-soft);
}

.doctors-page {
  overflow-x: hidden;
}

.doctors-hero-section,
.doctors-team-section,
.doctors-why-section,
.doctors-testimonials-section,
.doctors-cta-section {
  padding: 60px 0;
}

.doctors-hero-row,
.doctors-why-grid,
.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero-text-block {
  display: grid;
  gap: 18px;
}

.hero-label,
.section-label {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(21, 158, 236, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.77rem;
  justify-content: center;
}

.doctors-hero-row {
  background: linear-gradient(180deg, #e8f3ff 0%, #ffffff 100%);
  border-radius: 30px;
  padding: 32px;
}

.doctors-hero-row h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0;
  color: var(--primary-dark);
}

.doctors-hero-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 620px;
}

.hero-pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-pill-list span {
  background: #fff;
  border: 1px solid rgba(21, 158, 236, 0.18);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--text);
}

.hero-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat-panel {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(23, 61, 132, 0.05);
  display: grid;
  gap: 6px;
  text-align: center;
}

.stat-card-large {
  grid-column: span 1;
  background: linear-gradient(135deg, #159EEC 0%, #00bcd4 100%);
  color: #fff;
}

.stat-card strong {
  font-size: 2rem;
  display: block;
}

.stat-card p {
  margin: 0;
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
  display: grid;
  gap: 18px;
}

.section-head h2,
.doctors-why-grid h2,
.testimonials-section h2,
.doctors-cta-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary-dark);
}

.section-head p,
.doctors-team-section p,
.doctors-why-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 20px;
}

.doctor-profile-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(21, 158, 236, 0.08);
  box-shadow: 0 6px 18px rgba(23, 61, 132, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.doctor-profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(23, 61, 132, 0.06);
}

.profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
}

.profile-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.profile-body {
  padding: 12px 14px 18px;
  display: grid;
  gap: 8px;
}

.profile-specialty {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 158, 236, 0.12);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.profile-title {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.profile-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.profile-body ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 0;
}

.profile-body ul li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.profile-body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.2;
}

.profile-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.12s ease, background 0.12s ease;
  text-decoration:none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(21, 158, 236, 0.18);
}

.btn-card {
  display: inline-block;
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-size: 0.88rem;
}

.doctors-why-grid {
  gap: 28px;
}

.why-copy-panel {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid div {
  border-radius: 18px;
  background: rgba(21, 158, 236, 0.08);
  color: var(--text);
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

.why-image-panel {
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
}

.why-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctors-testimonials-section {
  background: rgba(21, 158, 236, 0.04);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(23, 61, 132, 0.06);
}

.testimonial-stars {
  color: #f2a922;
  margin-bottom: 14px;
  font-size: 1rem;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-dark);
}

.cta-panel {
  background: linear-gradient(135deg, #159EEC 0%, #038388 100%);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
}

.cta-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-actions a {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .doctors-hero-row,
  .doctors-why-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-pill-list,
  .benefit-grid,
  .doctors-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .doctors-hero-section,
  .doctors-team-section,
  .doctors-why-section,
  .doctors-testimonials-section,
  .doctors-cta-section {
    padding: 40px 0;
  }

  .hero-text-block,
  .hero-action-group,
  .hero-pill-list,
  .profile-meta,
  .cta-actions {
    gap: 10px;
  }

  .doctors-hero-row,
  .doctors-why-grid,
  .cta-panel {
    padding: 24px;
  }

  .doctors-grid,
  .testimonials-grid {
    gap: 16px;
  }

  .stat-card,
  .doctor-profile-card,
  .testimonial-card {
    padding: 18px;
  }

  .profile-image img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
  }

  .doctors-hero-row h1,
  .section-head h2,
  .doctors-cta-section h2 {
    font-size: 2rem;
  }

  .profile-body h3 {
    font-size: 1.1rem;
  }

  .profile-body p,
  .testimonial-card p,
  .benefit-grid div,
  .hero-pill-list span {
    font-size: 0.88rem;
  }

  .btn,
  .btn-card {
    min-height: 42px;
    padding: 0 18px;
  }
}
