  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: 'Montserrat', sans-serif; */
  }

  body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
  }

  .full-container {
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
  }

  /* Left Section Styling */
  .left-section {
    width: 70%;
  }

  .package-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
  }

  .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .slide:hover img {
    transform: scale(1.05);
  }

  /* .slick-prev, .slick-next {
    z-index: 10;
    width: 45px;
    height: 45px;
    background: #ffe7e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.9;
  }

  .slick-prev:hover, .slick-next:hover {
    background: #ff5a5f;
    opacity: 1;
    transform: scale(1.1);
  } */


  .slick-prev, .slick-next {
    z-index: 10;
    background: #ffe7e8;
    /* border-radius: 0 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.9;
    position: absolute; 
    top: 50%; /* Add this */
    transform: translateY(-50%); 

    font-size: 17px;
    background-color: #c7c7c7;
    border: none;
    color: #fff;
    padding: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .slick-prev {
    left: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-left: 3px;
  }

  .slick-next {
    right: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-right: 3px;
  }

  .slick-prev:hover, .slick-next:hover {
    /* background: #ff5a5f; */
    opacity: 1;
    transform: translateY(-50%) scale(1.1); /* Update this */
  }


  /* Dots styling */
  .slick-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .slick-dots li {
    margin: 0 5px;
    padding: 0;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
    background: #fff;
    transform: scale(1.2);
    /* margin-bottom:20px; */
  }

  .slick-dots li button:hover {
    background: #fff;
  }


  /* Itinerary Section */
  .itinerary-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .itinerary-container h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }

  .itinerary-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ed3237;
    border-radius: 3px;
  }

  .itinerary-container li{
    list-style: circle;
    margin-left:15px;
  }

  .itinerary-content li {
    /* padding: 5px;
    font-size: 17px; */
    list-style: outside circle;
    /* margin-left: 25px; */
  }


  .itinerary-item {
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
  }

  .itinerary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
  }

  .itinerary-item h4 {
    font-size: 1.2rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }

  .itinerary-content {
    display: none;
    padding: 1.2rem 0 0.5rem;
    color: #666;
  }

  .itinerary-content ul {
    padding-left: 1.5rem;
  }

  .itinerary-content li {

    margin-bottom: 0.7rem;
    position: relative;
  }

  .toggle-icon {
    color: #ed3237;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .itinerary-item.active .toggle-icon {
    transform: rotate(90deg);
  }

  /* Right Section Styling */
  .right-section {
    width: 30%;
  }

  .details-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .details-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: #ed3237;
    opacity: 0.05;
    border-radius: 0 0 0 100%;
  }

  .details-container h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .package-info {
    margin-bottom: 1rem;
  }

  .duration {
    display: inline-block;
    background: #ffe8e8;
    color: #ed3237;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(237, 50, 55, 0.1);
  }

  /* Form Styling */
  .enquiry-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .enquiry-form::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: #ed3237;
    opacity: 0.05;
    border-radius: 0 100% 0 0;
  }

  .enquiry-form span {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    font-weight: 600;
  }

  .enquiry-form input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .enquiry-form input:focus {
    outline: none;
    border-color: #ed3237;
    box-shadow: 0 0 0 3px rgba(237, 50, 55, 0.1);
  }

  .submit-button {
    width: 100%;
    background: #ed3237;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(237, 50, 55, 0.2);
  }

  .submit-button:hover {
    background: #ff5a5f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(237, 50, 55, 0.3);
  }

  /* Essential Information Section */
  #essential-info-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }

  #essential-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ed3237;
    border-radius: 3px;
  }

  .essential-info-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 2rem;
  }

  .info-item {
    width: 20%;
    text-align: center;
    border-right: 1px dashed #e1e1e1;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
  }

  .info-item:last-child {
    border-right: none;
  }

  .info-item {
    width: 20%;
    text-align: center;
    border-right: 1px dashed #e1e1e1;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
  }

  .info-item:last-child {
    border-right: none;
  }

  .info-item:hover {
    transform: translateY(-5px);
  }

  .info-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: grayscale(0%);
    transition: all 0.3s ease;
  }

  .info-item:hover img {
    transform: scale(1.1);
  }

  .info-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
  }

  .info-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
  }

  /* Mobile Styling */
  .mobile-details-container, .mobile-enquiry-form {
    display: none;
  }

  @media (max-width: 992px) {
    .full-container {
      width: 95%;
    }
  }

  @media (max-width: 768px) {
    .full-container {
      flex-direction: column;
    }

    .left-section, .right-section {
      width: 100%;
    }

    .details-container {
      display: none;
    }

    .enquiry-form {
      display: none;
    }

    .mobile-details-container {
      display: block;
      background: white;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .mobile-details-container::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 150px;
      height: 150px;
      background: #ed3237;
      opacity: 0.05;
      border-radius: 0 0 0 100%;
    }

    .mobile-enquiry-form {
      display: flex;
      flex-direction: column;
      background: white;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden;
    }

    .mobile-enquiry-form::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 150px;
      height: 150px;
      background: #ed3237;
      opacity: 0.05;
      border-radius: 0 100% 0 0;
    }

    .mobile-enquiry-form input {
      width: 100%;
      padding: 0.9rem 1.2rem;
      margin-bottom: 1rem;
      border: 1px solid #e1e1e1;
      border-radius: 10px;
      font-size: 0.95rem;
    }

    .essential-info-container {
      flex-wrap: wrap;
      padding: 1.5rem;
    }

    .info-item {
      width: 33.333%;
      padding: 1rem;
      margin-bottom: 1rem;
      border-right: 1px dashed #e1e1e1;
      border-bottom: 1px dashed #e1e1e1;
    }

    .info-item:nth-child(3n) {
      border-right: none;
    }

    .info-item:nth-last-child(-n+3) {
      border-bottom: none;
    }
  }

  @media (max-width: 576px) {
    .info-item {
      width: 50%;
    }

    .info-item:nth-child(2n) {
      border-right: none;
    }

    .info-item:nth-child(3n) {
      border-right: 1px dashed #e1e1e1;
    }

    .info-item:nth-last-child(-n+2) {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .info-item {
      width: 100%;
      border-right: none;
    }

    .info-item:last-child {
      border-bottom: none;
    }

    #essential-info-title {
      font-size: 1.8rem;
    }
  }