/* =========================
   ABOUT PAGE – HERO
========================= */

.about-hero {
  position: relative;
  height: 70vh;
  background-size: cover;
  background-position: center;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 69, 60, 0.85),
    rgba(124, 154, 74, 0.65)
  );
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 14px;
  color: #ffffff;
}

.about-hero p {
  max-width: 640px;
  font-size: 1.15rem;
  opacity: 0.95;
  color: rgba(255,255,255,0.95);
}

/* =========================
   VISION & MISSION
========================= */

.about-vision {
  text-align: center;
}

.about-vision p {
  max-width: 820px;
  margin: 0 auto 18px;
  color: #444;
}

/* =========================
   CORE VALUES
========================= */

.about-values {
  background: var(--bg-light);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}

/* =========================
   PRACTITIONERS SECTION
========================= */

.about-practitioners {
  background: #ffffff;
}

.practitioner-grid {
  max-width: 1000px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.practitioner-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: center;
}

.practitioner-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.practitioner-info h3 {
  color: var(--primary);
  margin-bottom: 4px;
}

.practitioner-info .qualification {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.practitioner-info p {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .practitioner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .practitioner-photo img {
    margin: 0 auto;
  }
}


/* =========================
   ACHIEVEMENTS
========================= */

.about-achievements {
  background: var(--bg-light);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.achievement-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.achievement-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-values-grid,
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-doctor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-values-grid,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    height: 60vh;
  }
}
