/* ==========================================================================
   vision-mission.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.vm-hero {
  width: 100%;
  height: 363px;
  background: linear-gradient(to right, #014a9f, #83a6cf);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 100px;
  color: var(--white);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.vm-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 380px;
  background-image: url('img/batik-bg.png');
  background-size: cover;
  background-position: left center;
  opacity: 0.55;
  pointer-events: none;
}

.vm-hero .page-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.vm-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  margin-bottom: 25px;
}

.vm-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.vm-hero .breadcrumb a:hover {
  text-decoration: underline;
  color: var(--white);
}

.vm-hero .breadcrumb .breadcrumb-icon {
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}

.vm-hero .current {
  color: var(--white);
}

.vm-hero h1 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.1;
  font-family: var(--font-family); /* Or unset if defaults take over */
}

.vm-hero p {
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .vm-hero {
    padding: 0 5%;
    height: 300px;
  }
  .vm-hero::after {
    opacity: 0.2;
    width: 250px;
  }
  .vm-hero h1 {
    font-size: 36px;
  }
  .vm-hero p {
    font-size: 16px;
  }
  .vm-hero .breadcrumb {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   Vision & Mission Content Section
   -------------------------------------------------------------------------- */
.vm-section {
  padding: 80px 5%;
  background-color: var(--background-light);
  max-width: var(--max-width);
  margin: 0 auto;
}

.vm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #6a95c7;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  width: fit-content;

}

.vm-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
}

.vm-title.underlined {
  display: inline-block;
}

.vm-title.underlined::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 140px; /* Highlights 'Strategic' */
  height: 4px;
  background-color: var(--primary-color);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Base Card Style */
.vm-card {
  border-radius: 12px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

.vm-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.vm-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Vision Card (Dark) */
.vm-card--vision {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(1, 74, 159, 0.2);
}

.vm-card--vision .vm-card__icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.vm-card--vision p {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.9;
}

/* Mission Card (Light) */
.vm-card--mission {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vm-card--mission .vm-card__icon {
  background-color: #ebefbc; /* matching a subtle highlight or light blue */
  background-color: #e6f0fa;
  color: var(--primary-color);
}

.vm-card--mission ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-card--mission ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
}

.vm-card--mission ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  top: -4px;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .vm-title {
    font-size: 2.2rem;
  }
  .vm-title.underlined::after {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .vm-card {
    padding: 40px 30px;
  }
  .vm-card h3 {
    font-size: 1.75rem;
  }
  .vm-card--vision p, .vm-card--mission ul li {
    font-size: 1rem;
  }
}