/* ===== ABOUT PAGE ===== */

.about-intro {
  padding: 60px 0 40px; background: var(--white);
}
.about-intro .intro-text {
  max-width: 780px; margin: 0 auto; text-align: center;
}
.about-intro .intro-text p {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.9; margin-bottom: 12px;
}

/* Doctor */
.doctor-section {
  padding: 60px 0;
  background: var(--off-white);
}
.doctor-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.doctor-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy-light));
}
.doctor-card-body {
  padding: 40px 44px;
}
.doctor-card-body .section-badge {
  margin-bottom: 12px;
}
.doctor-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}
.doctor-card-body .green-line {
  margin-bottom: 20px;
}
.doctor-card-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.doctor-highlights {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.doctor-highlight-item {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  background: var(--blue-tint);
  border-radius: var(--radius-md);
}
.doctor-highlight-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.doctor-highlight-item span {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Team */
.team-section { padding: 60px 0; background: var(--off-white); }
.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--navy);
  text-align: center; margin-bottom: 8px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px; max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27,42,74,0.04);
  transition: all var(--transition);
  border-top: 3px solid transparent;
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--navy-light));
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.team-card p {
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.7;
}

/* Experience */
.experience-section {
  padding: 60px 0;
  background: var(--navy);
}
.experience-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-align: center; margin-bottom: 8px;
  color: #fff;
}
.experience-content {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.experience-content p {
  font-size: 16px;
  line-height: 1.8; margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
}
.experience-content strong { color: var(--accent-light); }
.experience-section .section-badge {
  background: rgba(56,189,210,0.15); color: var(--accent-light);
}
.experience-section .green-line {
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
}
.experience-section .section-title { color: #fff; }

/* Why Choose */
.why-choose-section { padding: 60px 0; }
.why-choose-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--navy);
  text-align: center; margin-bottom: 8px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px; max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27,42,74,0.04);
  transition: all var(--transition);
  border-left: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--accent);
}
.why-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.why-card p {
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.7;
}

/* Care Process */
.care-process-section { padding: 60px 0; background: var(--blue-tint); }
.care-process-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--navy);
  text-align: center; margin-bottom: 8px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px; max-width: 800px;
  margin: 0 auto; padding: 0 24px;
}
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--transition);
}
.process-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.process-number {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center;
  justify-content: center;
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(27,42,74,0.2);
}
.process-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.process-card p {
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.7;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .team-grid,
  .why-grid,
  .process-grid { grid-template-columns: 1fr; }
  .doctor-highlights { flex-direction: column; gap: 12px; }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-highlights { flex-direction: row; }
}
@media (max-width: 600px) {
  .about-intro,
  .doctor-section,
  .team-section,
  .experience-section,
  .why-choose-section,
  .care-process-section { padding: 40px 0; }
  .about-intro .intro-text p,
  .doctor-card-body p,
  .experience-content p { font-size: 14.5px; }
  .doctor-card-body h2,
  .team-section h2,
  .experience-section h2,
  .why-choose-section h2,
  .care-process-section h2 { font-size: 24px; }
  .doctor-card-body { padding: 28px 24px; }
  .doctor-highlights { flex-direction: column; gap: 10px; }
}
