.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transform: scale(1.05);
  
  }
  .banner-hero * {
    position: relative;
    z-index: 3;
  }
  
  .content-ikonik{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 0px 50px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    margin-top:0px;
  
  }
  .cta-text {
    font-weight: 500;
    margin-top: 20px;
    color: #2a9d8f;
  }
  
  .ikonik-text {
    flex: 2;
  }
  
  .ikonik-image {
    flex: 1;
  }
  
  .ikonik-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .ikonik-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
  }
  
  .ikonik-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .ikonik-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2a9d8f;
  }
  .content-ikonik{
    animation: fadeIn 1s ease-in-out;
  }
  .text-justify{
    text-align:justify;
  }
  .hero-ikonik {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-top:30px;
  }
  
  .hero-left {
    flex: 0 0 calc(65% - 10px); /* bagi gap setengah */
  }
  .hero-right {
    flex: 0 0 calc(35% - 10px);
  }
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  @media (max-width: 768px) {
    .content-ikonik {
      flex-direction: column;
      text-align: justify;
    }
    
  }
  .highlight {
    color: #2a9d8f; 
  }
  
// REVIEW RATING


//KOMENTAR AND REVIEW RATING 
.review-section {
  margin-top: 50px;
  padding: 50px 0;
  border-top: 1px solid #ddd;
}

.review-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.average-rating {
  flex: 1;
  text-align: center;
}

.average-rating h3 {
  font-size: 50px;
  margin: 0;
  color: dodgerblue;
}

.average-rating .stars {
  font-size: 24px;
  color: #ffc107;
}

.rating-bars {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-bg {
  background: #eee;
  height: 10px;
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  background:dodgerblue;
  height: 100%;
}

.review-list {
  margin-top: 40px;
}

.review-item {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #2c3e50;
}

.review-user img {
  border-radius: 50%;
}

.user-info {
  flex-grow: 1;
}

.review-time {
  font-size: 12px;
  color: #777;
}

.review-content {
  margin-top: 2px;
}
.review-form {
  margin-top: 50px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.review-form h3 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.review-form input,
.review-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid rgb(49, 144, 238,0.5);
  border-radius: 6px;
  background:rgba(133, 174, 215, 0.2);
}

.review-form button {
  padding: 10px 20px;
  background:dodgerblue;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.review-form button:hover {
  background-color: rgb(23, 105, 188);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 5px;
  font-size: 24px;
  color: #ccc;
  margin-bottom: 15px;
  cursor: pointer;
}

.star-rating span:hover,
.star-rating span.active,
.star-rating span:hover ~ span {
  color: #ffc107;
}



@media (max-width: 768px) {
  .review-overview {
    flex-direction: column;
    padding-left:20px;
    padding-right:20px;
    align-items:center;
  }
  .average-rating {
    text-align: center;
  }

  .rating-bars {
    width: 100%;
  }
  .review-list{
    padding-left:20px;
    padding-right:20px;
  }
  .hero-ikonik {
    flex-direction: column;
  }
  .hero-left,
  .hero-right {
    flex: 0 0 100%;
  }
}
