/* Mobile Styles untuk Passion & Collaboration Section */
@media (max-width: 768px) {
  .passion-collaboration {
    height: 700px; /* KURANGI TINGGI */
    margin-top: 40px; /* JARAK LEBIH DEKAT DARI 100px */
    position: relative;
    z-index: 5;
  }

  .passion-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px; /* SESUAIKAN DENGAN CONTAINER */
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    overflow: hidden;
    z-index: 1;
  }

  .passion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    object-position: center 30%;
  }

  .passion-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 25%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.1) 75%,
      rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
  }

  .collaboration-content {
    position: relative;
    z-index: 10;
    color: black;
    text-align: center;
    width: 100%;
    padding: 40px 25px 0; /* KURANGI PADDING TOP */
    margin: 0 auto;
  }

  .collaboration-content h2 {
    font-size: 32px; /* SEDIKIT LEBIH KECIL */
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .collaboration-content h2 .blue-text {
    color: #204f9d;
  }

  .collaboration-content h2 .red-text {
    color: #ee3025;
  }

  .collaboration-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 100%;
    color: rgba(0, 0, 0, 0.9);
  }

  .collaboration-content .view-all-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .passion-collaboration {
    height: 600px;
    margin-top: 30px; /* JARAK LEBIH DEKAT */
  }

  .passion-background {
    height: 600px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .passion-image {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .passion-background::before {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .collaboration-content {
    padding: 30px 20px 0; /* KURANGI LAGI PADDING */
  }

  .collaboration-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .collaboration-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .collaboration-content .view-all-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
  .passion-collaboration {
    height: 550px;
    margin-top: 20px; /* JARAK TERDEKAT */
  }

  .passion-background {
    height: 550px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .passion-image {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .passion-background::before {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .collaboration-content {
    padding: 25px 15px 0;
  }

  .collaboration-content h2 {
    font-size: 22px;
  }

  .collaboration-content p {
    font-size: 12px;
  }
}
