body{
    align-items: center;
    font-family: 'Poppins'; 
}

.main-slideshow {
    width: 100%;
    height: 60vh;
    position: relative;
}

.main-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: none;
}

.main-slideshow .slide.active {
    display: block;
}

.explore-section {
    position: absolute; 
    top: 58%; 
    left: 50%; 
    transform: translateX(-50%);
    z-index: 2;
}

.explore-frame {
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(4, 173, 246, 0.2);
    width: 600px; 
    max-width: 900px; 
    background-color: #fff;
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.inner-frame {
    border: 1px solid #757575; 
    border-radius: 15px; 
    width: 100%; 
    padding: 10px; 
}

.explore-form input:focus,
.explore-form select:focus,
.explore-form textarea:focus {
    outline: none;
    border: none;
}

.explore-section h1 {
    font-size: 24px; 
    color: #091d46;
    margin-bottom: 10px; 
}

.explore-form {
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
    align-items: center; 
}

.input-group {
    flex: 1; 
    margin-left: 30px; /*REMEMBER: PUT PIN ICON BESIDE THE LOCATION AND DATE LIKE IN PROTOTYPE*/
}

.label-bold {
    font-weight: 600; 
    display: block; 
    text-align: left; 
}

.input-with-icon {
    display: flex;
    align-items: center; 
    position: relative; 
    gap: 10px;
}

.input-icon {
    margin-right: 10px; 
    width: 100px; 
    height: 100px; 
}

.search-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0; 
}

.search-icon {
    width: 15px; 
    height: 15px; 
}

.location-input,
.date-input {
    padding: 10px;
    border: 1px solid #fff; 
    border-radius: 5px;
    width: 100%; 
}

.vertical-separator {
    width: 1.5px; 
    background-color: #757575; 
    height: 35px; 
    margin: 0 10px; 
}

.separator {
    width: 80%;
    border-top: 0.2px solid #757575;
    margin: 160px auto 1px auto;
}


.tour-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.tour-location {
  margin: 8px 0 12px 0;
  color: #666;
  font-size: 14px;
  font-weight: 400;
}

/* Location */
.tour-meta {
    padding-left: 10px;         
    display: flex;
    font-size: 14px;
    align-items: center;
}

.travel-packages {
    padding: 30px 0 30px 0;
    text-align: center;
}

.travel-packages h2 {
    font-size: 28px;
    padding: 30px 0 65px 0;
    color: #091d46;
}

.packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px; 
    padding: 0 10px; 
}

.package {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s;
    text-align: left; 
    width: 260px; 
    position: relative;
}

.package:hover {
    box-shadow: 0 4px 8px rgba(4, 173, 246, 0.2);
}

.package-image {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px 10px 0 0; 
    display: block;
}

.package h3 {
    float: left; 
    margin-bottom: 5px;
    margin-left: 10px;
    font-size: 18px;
    padding: 10px;
    width: 75%;
}

.price {
    float: right; 
    color: #008EC4; 
    font-size: 13px;
    font-weight: 500;
    padding: 10px; 
    margin-left: 10px; 
    margin: 5px 0; 
}

.see-more-button {
    display: block;          
    width: 140px;            
    margin: 12px auto 20px;  
    padding: 6px 0;
    background-color: #008EC4;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s ease;
    clear: both;             
    position: static;       
}

.see-more-button:hover {
    background-color: #091d46;
    color: #fff;
}

.see-all-button {
    padding: 8px 60px;
    background-color: #fff;
    color: #000;
    border: 1.5px solid #000;
    border-radius: 20px;
    display: block; 
    width: fit-content;
    margin: 70px auto 0 auto;
    cursor: pointer;
    margin-top: 70px; 
    font-weight: 600;
}

.see-all-button:hover {
    background-color: #0073a0; 
    color: #fff; 
    border: 1.5px solid #fff;
}

.section-divider {
  border: none;
  border-top: 0.2px solid #757575;
  margin: 20px auto;
  width: 80%;
}

.why-choose-us {
    padding: 15px;
    padding-top: 1px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 28px;
    padding: 20px;
    color: #091d46;
}

.why-choose-us p {
    max-width: 1200px;
    margin: 3 auto;
    color: #333;
    text-align: justify; 
}

/* Category Filter Buttons */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #007bff;
  background-color: transparent;
  color: #007bff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.filter-btn.active {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}
