/* ===================================================
   VISION MISSION VALUES – vmv-page.css
   SRJ Ventures Theme
   =================================================== */

.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

.vmv-hero { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  margin: 12px 0 10px;
  font-family: 'DM Sans', sans-serif;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.85;
}

.section-label { display: flex; align-items: center; margin-bottom: 14px; }
.section-label span {
  background: linear-gradient(135deg, #4284DB, #29EAC4);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #4284DB, #29EAC4);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* ─── VMV BLOCKS ─── */
.vmv-block { padding: 100px 80px; background: #fff; }

.vmv-block-grid {
  display: flex;
  gap: 70px;
  align-items: center;
}

.vmv-block-grid.reverse { flex-direction: row-reverse; }

.vmv-block-image {
  flex: 1;
  position: relative;
}

.vmv-block-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  height: 450px;
  object-fit: cover;
}

.vmv-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4284DB, #29EAC4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(66,132,219,0.4);
  border: 4px solid #fff;
}

.vmv-block-text { flex: 1; }

.vmv-lead {
  font-size: 17px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 30px;
  border-left: 4px solid #4284DB;
  padding-left: 20px;
}

.vmv-points { display: flex; flex-direction: column; gap: 16px; }

.vmv-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vp-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: linear-gradient(135deg, #4284DB, #29EAC4);
  border-radius: 50%;
  margin-top: 6px;
}

.vmv-point p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ─── VALUES GRID ─── */
.vmv-values { padding: 100px 80px; }

.values-subtitle {
  text-align: center;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-top: -10px;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: default;
}

.value-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  opacity: 0.88;
  line-height: 1.65;
}

/* ─── COMMITMENT ─── */
.vmv-commitment {
  padding: 80px;
  background: #1a1a1a;
  text-align: center;
}

.commitment-inner h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .vmv-block { padding: 70px 40px; }
  .vmv-block-grid, .vmv-block-grid.reverse { flex-direction: column; }
  .vmv-block-image img { height: 320px; }
  .vmv-values { padding: 70px 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vmv-commitment { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .page-hero-content h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .vmv-block { padding: 50px 20px; }
  .vmv-values { padding: 50px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .vmv-commitment { padding: 50px 20px; }
  .commitment-inner h2 { font-size: 22px; }
}
