/* ============================================================
   vision-mission.css — Vision & Mission Page
   Ingraham English School · Meerut
   NOTE: style.css must be loaded before this file
   ============================================================ */

/* ── NAV ACTIVE ── */
.nav-active { color: var(--gold) !important; }
.nav-dropdown-menu a.nav-active { color: var(--gold) !important; font-weight: 500; }
.mobile-nav-cta { color: var(--gold) !important; margin-top: .5rem; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.vm-hero {
  position: relative;
  height: 480px;
  margin-top: 88px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.vm-hero-bg {
  position: absolute; inset: 0;
  background-image: url('school.jpg');
  background-size: cover;
  background-position: center 35%;
}
.vm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,18,45,.96) 0%,
    rgba(10,18,45,.65) 50%,
    rgba(10,18,45,.22) 100%
  );
}
.vm-breadcrumb {
  position: absolute; top: 1.6rem; left: 50%;
  transform: translateX(-50%);
  max-width: 1280px; width: 100%;
  padding: 0 2.5rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .74rem; color: rgba(255,255,255,.45);
  z-index: 3;
}
.vm-breadcrumb a {
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
}
.vm-breadcrumb a:hover { color: var(--gold); }
.vm-bc-sep { font-size: .6rem; opacity: .35; }
.vm-bc-current { color: var(--gold); }
.vm-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem 4rem; width: 100%;
}
.vm-hero-eyebrow {
  font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: .9rem;
  display: flex; align-items: center; gap: .7rem;
}
.vm-hero-eyebrow::before,
.vm-hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 28px; height: 1.5px; background: var(--gold);
}
.vm-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600; color: #fff;
  line-height: 1.06; margin-bottom: 1rem;
}
.vm-hero-title em { font-style: italic; color: var(--gold-light); }
.vm-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.68);
  max-width: 520px; line-height: 1.72;
}

/* ══════════════════════════════════════
   QUOTE STRIP
══════════════════════════════════════ */
.vm-quote-strip {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.vm-quote-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197,164,75,.08) 0%, transparent 65%);
}
.vm-quote-inner {
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}
.vm-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; line-height: .5;
  color: rgba(197,164,75,.2);
  margin-bottom: .5rem;
  display: block;
}
.vm-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-style: italic;
  color: var(--white); line-height: 1.55;
  margin-bottom: .75rem;
}
.vm-quote-attr {
  font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}

/* ══════════════════════════════════════
   VISION & MISSION CARDS
══════════════════════════════════════ */
.vm-body {
  padding: 5rem 2rem;
  background: var(--cream);
}
.vm-body-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.vm-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
}
.vm-card:hover {
  box-shadow: 0 12px 40px rgba(31,49,95,.12);
  transform: translateY(-4px);
}
.vm-card--vision { border-top: 4px solid var(--navy); }
.vm-card--mission { border-top: 4px solid var(--gold); }

.vm-card-header {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 2rem 2rem 0;
  margin-bottom: 1.4rem;
}
.vm-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.vm-icon--navy { background: #eef1f7; color: var(--navy); }
.vm-icon--gold { background: #fdf6e3; color: var(--gold); }

.vm-card-eyebrow {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-light);
  font-weight: 500; margin-bottom: .3rem;
}
.vm-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--navy); line-height: 1.1;
}
.vm-card-title--gold { color: var(--gold); }

.vm-card-text {
  font-size: .93rem; color: var(--text-mid);
  line-height: 1.85; padding: 0 2rem;
  margin-bottom: 1.5rem;
}
.vm-card-text em { font-style: italic; color: var(--navy); }

.vm-tags {
  padding: 1.2rem 2rem 1.8rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.vm-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.vm-tag--navy { background: #eef1f7; color: var(--navy); }
.vm-tag--gold { background: #fdf6e3; color: #b8903e; }

/* ══════════════════════════════════════
   CORE VALUES
══════════════════════════════════════ */
.vm-values {
  padding: 5.5rem 2rem;
  background: var(--white);
}
.vm-values-inner { max-width: 1280px; margin: 0 auto; }
.vm-values-header { text-align: center; margin-bottom: 3.5rem; }
.vm-values-sub {
  font-size: .95rem; color: var(--text-mid);
  max-width: 480px; margin: .6rem auto 0; line-height: 1.7;
}
.vm-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vm-val-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.vm-val-card:hover {
  box-shadow: 0 8px 28px rgba(31,49,95,.1);
  transform: translateY(-3px);
}
.vm-val-card:nth-child(1),
.vm-val-card:nth-child(4) { border-top: 3px solid var(--navy); }
.vm-val-card:nth-child(2),
.vm-val-card:nth-child(5) { border-top: 3px solid var(--gold); }
.vm-val-card:nth-child(3),
.vm-val-card:nth-child(6) { border-top: 3px solid var(--red-accent); }

.vm-val-icon {
  font-size: 1.6rem; margin-bottom: .9rem;
}
.vm-val-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: .5rem;
}
.vm-val-desc {
  font-size: .83rem; color: var(--text-mid); line-height: 1.72;
}

/* ══════════════════════════════════════
   MOTTO BANNER
══════════════════════════════════════ */
.vm-motto-banner {
  padding: 5.5rem 2rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1f315f 50%, #0e1f45 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.vm-motto-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197,164,75,.08) 0%, transparent 65%);
}
.vm-motto-inner {
  max-width: 680px; margin: 0 auto;
  position: relative; z-index: 1;
}
.vm-motto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600; color: var(--white);
  line-height: 1.1; margin: .5rem 0 1.2rem;
}
.vm-motto-title em { font-style: italic; color: var(--gold-light); }
.vm-motto-text {
  font-size: .98rem; color: rgba(255,255,255,.62);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.vm-cta {
  padding: 5rem 2rem;
  background: var(--cream);
  text-align: center;
}
.vm-cta-inner { max-width: 680px; margin: 0 auto; }
.vm-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--navy);
  line-height: 1.15; margin-bottom: 1rem;
}
.vm-cta-title em { font-style: italic; }
.vm-cta-sub {
  font-size: .97rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 2.2rem;
}
.vm-cta-btns {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.vm-cta .btn-hero-ghost {
  border-color: rgba(31,49,95,.4);
  color: var(--navy);
}
.vm-cta .btn-hero-ghost:hover {
  background: rgba(31,49,95,.06);
  border-color: var(--navy);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .vm-body-inner { grid-template-columns: 1fr; }
  .vm-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vm-hero { height: 400px; }
  .vm-hero-content { padding: 0 1.5rem 3rem; }
  .vm-values-grid { grid-template-columns: 1fr; }
  .vm-body { padding: 3rem 1.2rem; }
}