.pg-section {
    margin-bottom: 28px;
  }
  
  .pg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0faf9;
    border: 1px solid #d0eeeb;
    color: #2a9d8f;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  
  .pg-hero-title {
    margin-bottom: 12px;
  }
  
  .pg-hero-title span {
    font-style: italic;
    color: #2a9d8f;
  }
  
  .pg-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .pg-stats {
    display: flex;
    background: #ffffff80;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .pg-stat {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    border-right: 1px solid #f0f0f0;
  }
  
  .pg-stat:last-child {
    border-right: 0;
  }
  
  .pg-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #2a9d8f;
    line-height: 1;
    margin-bottom: 8px;
  }
  
  .pg-stat-label {
    font-size: 10px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .pg-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
    margin-bottom: 28px;
  }
  
  .pg-feature-card {
    background: #ffffff80;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .pg-feature-icon-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  
  .pg-feature-icon {
    font-size: 16px;
    margin-bottom: 0;
    display: block;
    color:var(--dark-green);
  }
  
  .pg-feature-title {
    display: block;
    font-size: 14px;
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 4px;
  }

  .pg-feature-text-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
  
  .pg-feature-subtitle {
    font-size: 20px;
    color: #2a9d8f;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    margin-top: 12px;
  }
  
  .pg-feature-text {
    font-size: 12px;
    color: #777777;
    line-height: 1.5;
  }
  
  .pg-week-section {
    margin: 40px 0;
  }
  
  .pg-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2a9d8f;
    margin-bottom: 8px;
  }
  
  .pg-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
  }
  
  .pg-week-scroll {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(6, auto);
  }
  
  .pg-week-card {
    display: inline-block;
    background: #ffffff80;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #eeeeee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    margin-right: 4px;
    vertical-align: top;
    white-space: normal;
  }
  
  .pg-week-card:last-child {
    margin-right: 0;
  }
  
  .pg-week-day {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
  }
  
  .pg-week-icon {
    font-size: 26px;
    margin-bottom: 8px;
    color:var(--green);
  }
  
  .pg-week-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-green);
    line-height: 1.3;
  }
  
  .pg-video-section {
    margin: 40px 0;
    clear: both;
  }
  
  .pg-video-wrapper {
    position: relative;
    padding-bottom: 177%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .pg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media screen and (max-width: 768px) {
    .pg-week-scroll {
      grid-template-columns: repeat(6, 200px);
    }
  }

  @media screen and (max-width: 600px) {
    .pg-feature-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 4px;
    }
    .pg-feature-card {
      padding: 12px 16px;
    }
    .pg-stat-number {
      font-size: 22px;
      margin-bottom: 4px;
    }
    .pg-feature-text {
      margin-bottom: 4px;
    }
    .pg-week-card {
      padding: 12px;
    }
    .pg-week-icon {
      font-size: 22px;
      margin-bottom: 4px;
    }
    .pg-week-day {
      margin-bottom: 0px;
    }
    .pg-feature-subtitle {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 425px) {
    .pg-week-scroll {
      grid-template-columns: repeat(6, 150px);
    }
  }

  /* ================================================================================== */
  /* ========================= Package Itinerary Section ====================-========= */  
  /* ================================================================================== */

.package-included,
.package-not-included {
    margin-bottom: 24px;
}

.package-included h4,
.package-not-included h4 {
    margin-bottom: 14px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.package-card {
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.package-card--included {
    background: #f0faf9;
    border: 1px solid #d0eeeb;
}

.package-card--not-included {
    background: #fff5f5;
    border: 1px solid #ffd0d0;
}

.package-icon {
    font-size: 16px;
    line-height: 1;
}

.package-icon .emoji {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.package-card p {
    margin: 0;
}

.package-card strong {
    display: block;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.package-card span {
    display: block;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Tablet and smaller */
@media (max-width: 768px) {
    .package-card {
        padding: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .package-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .package-card {
        padding: 14px;
    }

    .package-card strong {
        font-size: 14px;
    }

    .package-card span {
        font-size: 13px;
    }
}

/* ================================================================================== */
/* ========================= Guest Review Section =================================== */  
/* ================================================================================== */

.guest-reviews-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.guest-reviews-container .grd-reviews-carousel .grd-review-item{
  display: flex;
  justify-content: center;
  align-items: center;
}

.guest-reviews-container .grd-reviews-container,
.guest-reviews-container .grd-reviews-carousel{
  padding: 0;
}
.guest-reviews-container .grd-review-item {
  padding: 0 50px;
}

.guest-review {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.guest-review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.guest-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.guest-review__avatar--teal {
  background: #2a9d8f;
}

.guest-review__avatar--dark {
  background: #264653;
}

.guest-review__meta strong {
  display: block;
  font-size: 14px;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.guest-review__meta span {
  display: block;
  font-size: 11px;
  color: #999999;
}

.guest-review__rating {
  margin-left: auto;
  color: #e9c46a;
  font-size: 13px;
  white-space: nowrap;
}

.guest-review__text {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
  font-style: italic;
  margin: 0;
}

.guest-review__source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #999999;
  margin-top: 10px;
}

.guest-review__source .emoji {
  width: 14px;
  height: 14px;
  display: inline-block;
}

/* Tablet and smaller */
@media (max-width: 768px) {
  .guest-review {
      padding: 20px;
  }

  .guest-review__header {
      gap: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .guest-reviews-container .grd-review-item {
    padding: 0 10px;
  }

  .guest-review {
      padding: 18px;
      border-radius: 14px;
  }

  .guest-review__header {
      align-items: flex-start;
  }

  .guest-review__avatar {
      width: 40px;
      height: 40px;
      font-size: 14px;
  }

  .guest-review__meta strong {
      font-size: 14px;
  }

  .guest-review__meta span {
      font-size: 11px;
      line-height: 1.4;
  }

  .guest-review__rating {
      font-size: 12px;
      padding-top: 2px;
  }

  .guest-review__text {
      font-size: 13px;
      line-height: 1.6;
  }
}