/* === GENERAL === */
.about-page {
  font-family: "Inter", sans-serif;
  color: #222;
  line-height: 1.6;
}

/* === HERO SECTION === */
.about-hero {
  background: linear-gradient(rgba(114, 30, 30, 0.7), rgba(152, 42, 77, 0.7)),
    url("/assets/image/rhab1.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 700px;
  margin: auto;
}

/* === MISSION SECTION === */
.about-mission {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #f8faff 0%, #eef2f8 100%);
  text-align: center;
  overflow: hidden;
}

/* Glowing gradient accents */
.about-mission::before,
.about-mission::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.about-mission::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 149, 237, 0.25), transparent 70%);
  top: -100px;
  right: -100px;
}

.about-mission::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* === MISSION CARD === */
.mission-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.mission-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(90deg, #2b5876, #4e4376);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  position: relative;
}

.mission-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #4e4376, #2b5876);
  margin: 15px auto 0;
  border-radius: 2px;
}

.mission-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

/* === VISION SECTION === */
.about-vision {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #f7f9ff 0%, #ecf1ff 100%);
  text-align: center;
  overflow: hidden;
}

.about-vision::before,
.about-vision::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.about-vision::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(78, 67, 118, 0.25), transparent 70%);
  top: -100px;
  left: -120px;
}

.about-vision::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.25), transparent 70%);
  bottom: -80px;
  right: -100px;
}

.vision-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1.2s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.vision-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.vision-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* === TEAM SECTION === */
.about-team {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f9fbff 0%, #eef2f8 100%);
  position: relative;
  overflow: hidden;
}

.about-team::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 149, 237, 0.2), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.about-team h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #2b5876, #4e4376);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease, filter 0.3s ease;
  z-index: 0;
}

.team-card:hover img {
  transform: scale(1.1);
  filter: brightness(80%);
}

.team-info {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 20px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease;
}

.team-card:hover .team-info {
  opacity: 1;
  transform: translateY(0);
}

.team-info h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: 600;
}

.team-info p {
  font-size: 1rem;
  opacity: 0.85;
}

/* === CTA SECTION === */
.about-cta {
  position: relative;
  background: linear-gradient(90deg, #4e4376, #2b5876);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
  filter: blur(80px);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: fadeUp 1s ease both;
}

.btn-primary {
  background: #ffd700;
  color: #000;
  padding: 14px 35px;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: #ffcc00;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .mission-content,
  .vision-content {
    padding: 40px 25px;
  }

  .about-mission,
  .about-vision {
    padding: 80px 15px;
  }

  .about-cta {
    padding: 80px 15px;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .about-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about-hero p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
}
