﻿/*
 * Matchwell Engineering — Corporate Professional Mission & Vision Styling
 * mission-vision.css | astra-matchwell child theme
 */

/* ─────────────────────────────────────────────────────────────────
   SECTION CONTAINER
───────────────────────────────────────────────────────────────── */
.elementor-element-6feab29.elementor-section,
section.elementor-element-6feab29 {
  background: #F8FAFC !important;
  padding: 88px 0 80px !important;
  position: relative !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

/* Hide original unstyled Elementor columns */
.elementor-element-6feab29 .elementor-element-ad5d80f,
.elementor-element-6feab29 .elementor-container:not(.mw-mv-active) {
  display: none !important;
}

.mw-mv-corporate {
  width: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1E293B;
}

.mw-mv__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .mw-mv__container {
    padding: 0 20px;
  }
}

/* ─────────────────────────────────────────────────────────────────
   CENTERED CORPORATE HEADER
───────────────────────────────────────────────────────────────── */
.mw-mv__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.mw-mv__title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(28px, 3.2vw, 40px) !important;
  font-weight: 700 !important;
  color: #0D1F3C !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.01em !important;
}

.mw-mv__subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #64748B !important;
  margin: 0 0 18px !important;
  line-height: 1.5 !important;
}

.mw-mv__title-line {
  width: 48px;
  height: 3px;
  background: #1E3A8A;
  margin: 0 auto;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────────
   2-COLUMN CORPORATE GRID
───────────────────────────────────────────────────────────────── */
.mw-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .mw-mv__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.mw-mv__card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  position: relative;
}

.mw-mv__card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 3px;
  background: #1E3A8A;
  border-radius: 3px 3px 0 0;
}

.mw-mv__card--vision::before {
  background: #0D1F3C;
}

.mw-mv__card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.mw-mv__card-header {
  margin-bottom: 20px;
}

.mw-mv__card-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0D1F3C !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Corporate Statement Box */
.mw-mv__card-statement {
  background: #F8FAFC;
  border-left: 3px solid #1E3A8A;
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.mw-mv__card--vision .mw-mv__card-statement {
  border-left-color: #0D1F3C;
}

.mw-mv__card-statement p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  font-style: italic !important;
  margin: 0 !important;
}

/* Corporate Points List */
.mw-mv__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mw-mv__card-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  position: relative;
  padding-left: 18px;
}

.mw-mv__card-list li::before {
  content: '•';
  color: #1E3A8A;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}

.mw-mv__card--vision .mw-mv__card-list li::before {
  color: #0D1F3C;
}

.mw-mv__card-list strong {
  color: #0D1F3C;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────
   GROWTH JOURNEY
───────────────────────────────────────────────────────────────── */
.mw-mv__journey {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.mw-mv__journey-heading {
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0D1F3C !important;
  margin: 0 0 22px !important;
  text-align: center;
}

.mw-mv__journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .mw-mv__journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .mw-mv__journey-grid {
    grid-template-columns: 1fr;
  }
}

.mw-mv__journey-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  transition: border-color 150ms ease, background 150ms ease;
}

.mw-mv__journey-card:hover {
  border-color: #1E3A8A;
  background: #F1F5F9;
}

.mw-mv__journey-year {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 6px;
}

.mw-mv__journey-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0D1F3C !important;
  margin: 0 0 6px !important;
  line-height: 1.35 !important;
}

.mw-mv__journey-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #64748B !important;
  margin: 0 !important;
}

/* ─────────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mw-mv__card,
  .mw-mv__journey-card {
    transition: none !important;
  }
}