/* ===============================================
   TWO-COLUMN IMAGE + CONTENT SECTION
   =============================================== */

.image-content-section {
  padding: 80px 0 60px;
  background: #FFFFFF;
}

.image-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* LEFT SIDE — IMAGE STACK */

.image-stack-side {
  position: relative;
}

.image-stack-wrapper {
  position: relative;
  height: 500px;
}

.image-card-left {
  width: 280px;
  height: 360px;
  border-radius: 28px;
  background: #F5F7FA;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(17, 17, 17, 0.12);
  position: absolute;
  left: 0;
  top: 0;
}

.image-card-left img,
.image-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card-right {
  width: 280px;
  height: 420px;
  border-radius: 28px;
  background: #F5F7FA;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.14);
  position: absolute;
  right: 0;
  top: 40px;
}

.placeholder-label {
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 40px;
  background: #111111;
  color: #FFFFFF;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.experience-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.experience-text {
  font-size: 13px;
  font-weight: 500;
  color: #D1D5DB;
  letter-spacing: 0.3px;
}

/* RIGHT SIDE — CONTENT */

.content-side {
  padding-left: 20px;
}

.content-label {
  font-size: 13px;
  text-transform: uppercase;
  color: #6B7280;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 16px;
}

.content-heading {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
  max-width: 520px;
  margin: 0 0 18px 0;
}

.content-paragraph {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 0 28px 0;
}

.content-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.bullet-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EAF2FF;
  color: #2F80ED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.bullet-text {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  line-height: 1.5;
}

.content-cta-button {
  display: inline-block;
  background: #2F80ED;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(47, 128, 237, 0.35);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-cta-button:hover {
  background: #1E5FBE;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(47, 128, 237, 0.45);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .image-content-container {
    gap: 40px;
  }

  .content-heading {
    font-size: 36px;
  }

  .image-stack-wrapper {
    height: 450px;
  }

  .image-card-left {
    width: 240px;
    height: 320px;
  }

  .image-card-right {
    width: 240px;
    height: 380px;
  }

  .experience-badge {
    left: 30px;
    padding: 18px 24px;
  }

  .experience-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .image-content-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .image-stack-side {
    order: 1;
  }

  .content-side {
    order: 2;
    padding-left: 0;
  }

  .image-stack-wrapper {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .image-card-left {
    width: 220px;
    height: 280px;
    left: 20px;
  }

  .image-card-right {
    width: 220px;
    height: 340px;
    right: 20px;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .content-heading {
    font-size: 32px;
  }

  .content-paragraph {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .image-content-section {
    padding: 48px 0 40px;
  }

  .image-stack-wrapper {
    height: 320px;
    max-width: 100%;
  }

  .image-card-left {
    width: 55%;
    max-width: 200px;
    height: 240px;
    left: 0;
    top: 10px;
  }

  .image-card-right {
    width: 55%;
    max-width: 200px;
    height: 280px;
    right: 0;
    top: 20px;
  }

  .content-heading {
    font-size: 28px;
  }

  .content-paragraph {
    font-size: 14px;
  }

  .content-cta-button {
    width: 100%;
    text-align: center;
  }
}
