
/* ==============================
   SERVICES PAGE — HERO BANNER
   ============================== */

body.services-page .banner {
  position: relative;
  height: 55vh;              /* short elegant hero */
  min-height: 360px;
  margin-top: 0 !important;
  overflow: hidden;
}

body.services-page .banner img {
  width: 100%;
  height: 120%;              /* little extra for parallax */
  object-fit: cover;
  display: block;
  filter: brightness(0.85);   /* premium dim look */
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

/* bottom fade into page */
body.services-page .banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 90%
  );
  pointer-events: none;
}

/* =========================
   DUNA Style – 7 Point Approach (15px font)
   ========================= */
.crc-approach-section {
  background: #f6f5f2;
  padding: 80px 0;
  border-radius: 24px;
  margin: 60px auto;
}

.crc-approach-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.crc-approach-title {
  font-family: "DM Serif Text", serif;
  font-size: clamp(2.2rem, 3vw, 2.6rem); /* premium heading */
  font-weight: 500;
  color: #111827;
  text-align: center;
  margin-bottom: 40px;
}

.crc-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.crc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 22px;
  min-height: 130px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #e5e7eb;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.crc-card:hover {
  border-color: #d1d5db;
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

.crc-bullet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px; /* number font size */
  flex-shrink: 0;
}

.crc-card p {
  margin: 0;
  font-size: 15px;       /* main text 15px */
  line-height: 1.7;
  color: #374151;
  font-family: system-ui, sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  .crc-approach-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .crc-approach-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   SECTION 2 – CRC SOLUTIONS BLOCK
   (premium grey, keep images, 14px text)
   ================================ */

body.services-page .bg_img4 {
  background: #666769;            /* soft charcoal grey */
  padding: 80px 0 90px;
}

/* kill the <br><br><br> inside .top2 that create huge gap */
body.services-page .bg_img4 .top2 > br {
  display: none;
}

/* layout: two equal cards, centered */
body.services-page .bg_img4 .top2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 32px;
  align-items: justify-content: center;
}

/* LEFT: image card */
body.services-page .bg_img4 .who {
  flex: 1 1 50%;
  float: none;
  width: auto;
  background: #181920;
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(18px);
  animation: servicesFadeUp 0.8s ease-out forwards;
}

body.services-page .bg_img4 .who img {
  display: block;
  width: 100%;
  border-radius: 18px;
  margin-bottom: 16px;
}

/* RIGHT: text card */
body.services-page .bg_img4 .crc {
  flex: 1 1 50%;
  float: none;
  width: auto;
  background: #1d1e26;
  border-radius: 24px;
  padding: 28px 26px 30px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(18px);
  animation: servicesFadeUp 0.8s ease-out forwards;
  animation-delay: 0.12s;
}

/* heading */
body.services-page .bg_img4 .crc h1 {
  font-family: "DM Serif Text", system-ui, serif;
  font-size: clamp(2rem, 2.5vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #f9fafb;
}

/* paragraph block – 14px */
body.services-page .bg_img4 .crc .body-text {
  font-size: 17px;
  line-height: 1.9;
  color: #e5e7eb;
  margin-bottom: 18px;
  text-align: justify;
}

/* labels inside text */
body.services-page .bg_img4 .crc .body-text strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #ffffff;
}

/* last strong = subheading line */
body.services-page .bg_img4 .crc .body-text strong:last-of-type {
  margin-top: 16px;
  font-size: 15px;
}

/* bullets */
body.services-page .bg_img4 .bullet2 ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

body.services-page .bg_img4 .bullet2 li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #f3f4f6;
}

body.services-page .bg_img4 .bullet2 li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff9f2a; /* warm accent */
  transform: translateY(-50%);
}

/* remove old clearfix here */
body.services-page .bg_img4 .clear {
  display: none;
}

/* subtle entrance animation */
@keyframes servicesFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 960px) {
  body.services-page .bg_img4 .top2 {
    flex-direction: column;
  }

  body.services-page .bg_img4 .who,
  body.services-page .bg_img4 .crc {
    max-width: 520px;
    margin: 0 auto;
  }

  body.services-page .bg_img4 .who {
    margin-bottom: 22px;
  }

  body.services-page .bg_img4 .bullet2 ul {
    grid-template-columns: 1fr;
  }
}
