.package-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;

}
.package-wrapper .package-card{
    width: 30%;
    margin-bottom: 32px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.featured-package-section {
    background-color: #fff6e9;
    padding: 40px 24px;
}
.featured-package-section  h2 {
    text-align: center;
    color:#fd5c37;
    font-size: 50px;
    margin-bottom: 32px;
}

.package-wrapper {
    max-width: 1260px;
    margin: 0 auto;
}
.package-tabs {
    width: fit-content;
    font-size: 14px;
    color: #ff5c33;
    font-weight: 500;
    gap: 0;
    display: flex;
    margin-bottom: 16px;
}
.package-tab-btn {
    cursor: pointer;
    background: #ff5c332b;
    padding: 4px 6px;
    border-top: 1px solid #ff5c33;
    border-bottom: 1px solid #ff5c33;
    border-right: 1px solid #ff5c33;
}
.package-tab-btn.active {
  background: #ff5c33;
  color: #fff;
}

.package-tab-btn:first-of-type {
  border-left: 1px solid #ff5c33;
  padding: 4px 8px;
  border-radius: 50px 0 0 50px;
}
.package-tab-btn:last-of-type {
  padding: 4px 8px;
  border-radius: 0 50px 50px 0;
}
  
.featured-package-section .price-wrapper {
  position: relative;
  max-height: 234px;
}
.featured-package-section .price-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}
.featured-package-section .package-price {
    position: absolute;
    bottom: -44px;
    right: 21px;
    background-color: #ff5c33;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgb(255 92 51 / 0.3);
    width: 84px;
    height: 84px;
    align-items: center;
    justify-content: center;
}
.featured-package-section .package-info {
  padding: 20px 25px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.featured-package-section .package-info-data {
      width: 100%;
}
.featured-package-section .package-info h3 {
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
  width: 80%;
  display: block;
  word-wrap: break-word;
}
.featured-package-section .package-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.featured-package-section .package-info ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.featured-package-section .btn-book {
    display: block;
    margin: 20px 0;
    background-color: #41087e;
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
    height: 60px;
    text-decoration: none;
}
.featured-package-section .package-card:hover .btn-book {
  background-color: #fd5c37;
  cursor: pointer;
}
.no-of-kids {
    color: #975dd5;
    font-size: 16px;
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    flex-direction: column;
}
.no-of-kids i {
  font-size: 16px;
  padding-right: 4px;
}
.no-of-kids span {
    color: #ff5c33;
    background: #ff5c33;
    width: 2px;
    height: 20px;
    margin: 0 4px;
}
.featured-package-section .package-info ul li .inventory-count {
  color: #2fc72f;
  font-size: 16px;
}

.package-tab-content {
  display: none;
}
.package-tab-content.active {
  display: block;
}
.package-price {
  display: none;
}
.package-price.active {
  display: flex;
}

.no-package {
  font-size: 30px;
  color: darkslategrey;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 550px;
}

.inventory-info{
  font-size: 15px;
  display: none;
}


.package-image {
  display: none !important;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.package-image.active {
  display: block !important;
}




@media (max-width: 1200px) {
  .package-wrapper .package-card {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .package-wrapper .package-card {
    width: 100%;
  }

  .no-package{
    min-height: 450px;
  }
}