/* Mission & Vision page styles (scoped with MV_ prefix) */

.MV_Container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.MV_HeroSection {
  text-align: center;
  padding: 4rem 0;
  color: #fff;
  margin-bottom: 3rem;
}

.MV_HeroTitle {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #C8A451;
}

.MV_HeroSubtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
}

.MV_ContentGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .MV_ContentGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.MV_Card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.MV_Card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C8A451, #024173);
}

.MV_Card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.MV_CardTitle {
  font-size: 2rem;
  font-weight: 800;
  color: #024173;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.MV_CardIcon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C8A451, #d4b666);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.MV_CardContent {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.MV_ValuesSection {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.MV_ValuesSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #024173, #C8A451);
}

.MV_ValuesTitle {
  font-size: 2.3rem;
  font-weight: 800;
  color: #024173;
  text-align: center;
  margin-bottom: 2rem;
}

.MV_ValuesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .MV_ValuesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.MV_ValueItem {
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 5px solid #C8A451;
  transition: all 0.3s ease;
}

.MV_ValueItem:hover {
  background: linear-gradient(135deg, #C8A451, #d4b666);
  color: #fff;
  transform: translateX(6px);
}

.MV_ValueTitle {
  font-size: 1.25rem;
  font-weight: 800;
  color: #024173;
  margin-bottom: 0.5rem;
}

.MV_ValueItem:hover .MV_ValueTitle {
  color: #fff;
}

.MV_ValueDescription {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.MV_ValueItem:hover .MV_ValueDescription {
  color: rgba(255, 255, 255, 0.95);
}

.MV_DecorativeElement {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(200, 164, 81, 0.1);
  top: -100px;
  right: -100px;
  z-index: -1;
}

/* Page background similar to home footer gradient for visual continuity */
body {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
}

/* Entrance animation */
@keyframes mvFadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.MV_Card,
.MV_ValuesSection {
  animation: mvFadeInUp 0.6s ease forwards;
}

.MV_Card:nth-child(2) {
  animation-delay: 0.15s;
}

.MV_ValuesSection {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .MV_Container {
    padding: 1rem;
  }

  .MV_HeroSection {
    padding: 2rem 0;
  }

  .MV_Card,
  .MV_ValuesSection {
    padding: 2rem;
  }

  .MV_ValuesTitle {
    font-size: 2rem;
  }
}
