/* css/engagement.css */

.engagement-page {
  font-family: 'Poppins', sans-serif;
  color: #282828;
}

/* HERO SECTION */
.eng-hero {
  background: linear-gradient(to bottom, #F4F6FF 0%, #E8EEFF 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eng-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eng-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #4738DE;
  line-height: 1.2;
  margin-bottom: 24px;
}

.eng-hero__subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #EC1C24;
  margin-bottom: 32px;
}

.eng-hero__desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* HERO IMAGES - Collage Style */
.eng-hero__images {
  position: relative;
  height: 400px;
  max-width: 1000px;
  margin: 0 auto;
}

.eng-hero__img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.eng-hero__img--left {
  width: 280px;
  height: 380px;
  left: 0;
  top: 0;
  z-index: 2;
}

.eng-hero__img--center-1 {
  width: 220px;
  height: 220px;
  left: 320px;
  top: 60px;
  border-radius: 24px;
  z-index: 3;
}

.eng-hero__img--center-2 {
  width: 280px;
  height: 180px;
  left: 380px;
  top: 200px;
  z-index: 4;
}

.eng-hero__img--right {
  width: 260px;
  height: 340px;
  right: 0;
  top: 30px;
  z-index: 1;
}

/* BLOCKS SECTION */
.eng-blocks {
  padding: 80px 20px;
  background-color: #fff;
}

.eng-blocks__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.eng-block {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  align-items: center;
  position: relative;
}

.eng-block--reverse {
  flex-direction: row-reverse;
}

.eng-block__content {
  flex: 1;
  padding: 48px;
  z-index: 2;
}

.eng-block__content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.eng-block__content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.eng-block__content p:last-child {
  margin-bottom: 0;
}

.eng-block__icon {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.eng-block__icon img {
  width: 180px;
  height: auto;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/* Block Variations */
.eng-block--green {
  background-color: #016E49;
  color: #fff;
}

.eng-block--green .eng-block__content h3 {
  color: #BFF574;
}

.eng-block--green .eng-block__icon img {
  mix-blend-mode: screen;
  opacity: 0.6;
}

.eng-block--purple {
  background-color: #E8EEFF;
  color: #282828;
}

.eng-block--purple .eng-block__content h3 {
  color: #EC1C24;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .eng-hero__images {
    display: none; /* Hide complex collage on mobile */
  }
  
  .eng-block {
    flex-direction: column !important;
    text-align: center;
  }
  
  .eng-block__icon {
    flex: 0 0 auto;
    width: 100%;
    padding: 20px 40px 40px;
  }
  
  .eng-hero__title {
    font-size: 32px;
  }
  
  .eng-hero__subtitle {
    font-size: 22px;
  }
}
