/* ============================================================
   RR GROUP – about.css
   Page-specific styles for About Us page.
   Base styles (navbar, footer, utilities) come from styles.css
   ============================================================ */

/* ---------- Shared helpers for this page ---------- */
.center-line {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.about-hero {
  position: relative;
  margin-top: 147px; /* top-strip (49px) + navbar (98px) */
  height: 380px;
  overflow: hidden;
}

.about-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 60, 0.2) 0%,
    rgba(10, 20, 60, 0.1) 50%,
    rgba(10, 20, 60, 0.25) 100%
  );
}

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about-intro {
  background: var(--white);
}

.about-intro-inner {
  text-align: center;
  max-width: 860px;
}

.about-intro-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-text);
  margin-bottom: 18px;
  text-align: center;
}

/* ============================================================
   MISSION / VISION / GOALS
   ============================================================ */
.mvg-section {
  background: var(--navy);
  padding: 72px 0 80px;
}

.mvg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* --- Mission / Vision blocks --- */
.mv-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.mv-block:last-child {
  margin-bottom: 0;
}

.mv-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  position: relative;
}

.mv-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* Fallback icon if image missing */
.mv-icon-fallback {
  display: none;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.mv-text p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Goals --- */
.mvg-right {
  padding-top: 4px;
}

.goals-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.goals-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.goals-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ============================================================
   INDUSTRY INSIGHT
   ============================================================ */
.insight-section {
  background: var(--light-gray);
}

.insight-intro {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray-text);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  text-align: center;
}

.insight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  /* Invert to show navy icons on light background */
  /* filter: invert(16%) sepia(60%) saturate(800%) hue-rotate(200deg) brightness(80%); */
}

.insight-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444;
  max-width: 200px;
}

/* ============================================================
   RESPONSIVE – Tablet
   ============================================================ */
@media (max-width: 900px) {
  .about-hero {
    height: 260px;
  }

  .mvg-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE – Mobile
   ============================================================ */
@media (max-width: 600px) {
  .about-hero {
    height: 200px;
  }

  .mv-block {
    flex-direction: column;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .mv-title,
  .goals-title {
    font-size: 1.3rem;
  }
}
