/* ============================================================
   RR GROUP – project-management.css
   Page-specific styles for Project Management Process page.
   Base styles (navbar, footer, utilities) come from styles.css
   ============================================================ */

/* ---------- Shared helper ---------- */
.center-line {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

/* ============================================================
   INTRO SECTION
   ============================================================ */
.pmp-intro {
  background: var(--white);
  padding-bottom: 48px;
}

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

.pmp-intro-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-text);
  text-align: center;
}

/* ============================================================
   SPLIT ROWS
   Each row = full-width, 50/50 split: content panel + image
   ============================================================ */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

/* --- Navy panel --- */
.split-navy {
  background: var(--navy);
  display: flex;
  align-items: center;
}

.split-navy .split-content {
  padding: 56px 52px;
}

/* --- White panel --- */
.split-white {
  background: var(--white);
  display: flex;
  align-items: center;
}

.split-white .split-content {
  padding: 56px 52px;
}

/* --- Image panel --- */
.split-image {
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.split-row:hover .split-image img {
  transform: scale(1.03);
}

/* --- Typography inside panels --- */
.split-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.split-title.navy-text {
  color: var(--navy);
}

.split-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

/* --- Associates list --- */
.associates-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.associates-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
}

.associates-list .bullet {
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.associates-list strong {
  color: var(--navy);
  font-weight: 600;
}

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

  .split-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* On mobile, always show image after text */
  .split-row .split-image {
    order: 2;
    min-height: 260px;
  }

  .split-row .split-navy,
  .split-row .split-white {
    order: 1;
  }

  /* Row 2: image was first on desktop, keep text above on mobile */
  .split-row:nth-child(2) .split-image {
    order: 2;
  }

  .split-row:nth-child(2) .split-white {
    order: 1;
  }

  .split-navy .split-content,
  .split-white .split-content {
    padding: 40px 28px;
  }
}

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

  .split-title {
    font-size: 1.4rem;
  }

  .split-text,
  .associates-list li {
    font-size: 0.85rem;
  }

  .split-navy .split-content,
  .split-white .split-content {
    padding: 32px 20px;
  }
}
