.listing_hero {
  background-color: #94d2bd;
  background-image: url("../images/list/page-list/hero.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  height: 100vh;
  position: relative;
}

.listing_hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  content: "";
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.listing_hero .contents {
  position: relative;
  z-index: 2;
}

.listing_hero .contents h1 {
  color: var(--light-teal);
  text-align: center;
  margin-bottom: 0.8rem;
}

.listing_hero .contents p {
  color: var(--light-teal);
  font-weight: 600;
  text-align: center;
  margin-inline: auto;
  max-width: 800px;
}

.listing_hero .contents .cta-bar {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 650px;
  margin-inline: auto;
}

.listing_hero .contents .cta-bar .search {
  position: relative;
}

.listing_hero .contents .cta-bar .search .search-bar {
  height: 2.3rem;
  border: 0.05rem solid var(--very-light-teal);
  border-radius: 1.1rem;
  background-color: transparent;
  backdrop-filter: blur(2px);
  color: var(--deep-teal);
  padding: 0.5rem;
  padding-inline: 0.8rem;
  padding-right: 2.5rem;
  min-width: clamp(300px, 30vw, 300px);
  max-width: 390px;
  transition: 0.2s all;
}

.listing_hero .contents .cta-bar .search .search-bar[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.listing_hero .contents .cta-bar .search .search-bar:hover, 
.listing_hero .contents .cta-bar .search .search-bar:focus {
  outline: none;
  background-color: var(--very-light-teal);
  border-color: var(--light-teal);
}

.listing_hero .contents .cta-bar .search .search-bar:hover + .suggestions,
.listing_hero .contents .cta-bar .search .search-bar:focus + .suggestions {
  display: block;
}

.listing_hero .contents .cta-bar .search .search-bar::placeholder {
  color: var(--light-teal);
}

.listing_hero .contents .cta-bar .search .search-bar:hover::placeholder, 
.listing_hero .contents .cta-bar .search .search-bar:focus::placeholder {
  color: var(--deep-teal);
}

.listing_hero .contents .cta-bar .search .suggestions {
  position: absolute;
  top: 100%;
  margin-top: 0.4rem;
  left: auto;
  background-color: var(--very-light-teal);
  width: 100%;
  max-height: 12rem;
  overflow-y: auto;
  border-radius: 1rem;
  display: none;
  border: 0.1rem solid var(--light-teal);
  z-index: 1000;
  padding: 0.5rem 1rem;
}

.listing_hero .contents .cta-bar .search .suggestions::-webkit-scrollbar {
  display: none;
}

.listing_hero .contents .cta-bar .search .suggestions li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.listing_hero .contents .cta-bar .search .suggestions .no-result {
  color: red;
  font-style: italic;
  text-align: center;
}

.listing_hero .contents .cta-bar .search-btn {
  position: absolute;
  right: 0.8rem;
  top: 0.18rem;
  background-color: transparent;
  z-index: 1000;
  padding: 0.3rem;
  border-radius: 50%;
  font-weight: 900;
  color: var(--light-teal);
}

.listing_hero .contents .cta-bar .search:hover .search-btn,
.listing_hero .contents .cta-bar .search .search-bar:focus ~ .search-btn {
  background-color: var(--very-light-teal);
  color: var(--deep-teal);
}

.listing_hero .contents .cta-bar .search-btn i {
  font-size: small;
}

.listing_hero .contents .cta-bar .full-list {
  color: var(--light-teal);
  background-color: transparent;
  backdrop-filter: blur(2px);
  padding: 0.5rem;
  margin: 0.8rem;
  border: 0.1rem var(--very-light-teal) solid;
  border-radius: 1.8rem;
  font-weight: 600;
  padding-inline: 1.2rem;
  transition: 0.3s all;
}

.listing_hero .contents .cta-bar .full-list:hover, 
.listing_hero .contents .cta-bar .full-list:hover {
  background-color: var(--light-teal);
  color: var(--deep-teal);
}

.listings .listings_header {
  max-width: fit-content;
  margin-inline: auto;
}

.listings .listings_header h2 {
  font-size: clamp(24px, 8vw, 32px);
  color: var(--deep-teal);
  text-align: center;
  margin-bottom: 0.8rem;
}

.listings .listing-lists {
  display: flex;
  gap: 1.5rem;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.faqs {
  max-width: 100%;
  margin-bottom: 9rem;
  margin-inline: auto;
  padding: 2rem;
}

.faqs .header h2 {
  color: var(--deep-teal);
  text-align: center;
  width: 100%;
  cursor: pointer;
  margin-bottom: 3rem;
}

.faqs .questions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1024px;
  margin-inline: auto;
}

.faqs .questions dl {
  background-color: var(--light-teal);
  border-radius: 0.8rem;
  padding: 1rem;
  min-width: 250px;
  max-width: 500px;
  transition: all 0.3s ease-in-out;
}

.faqs .questions dt {
  font-size: 1.15rem;
  color: var(--deep-teal);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.faqs .questions dt:hover, 
.faqs .questions dt:focus, 
.faqs .questions dt:hover i,
.faqs .questions dt:focus i {
  color: var(--primary-color);
}

.faqs .questions dt i {
  font-size: 1.2rem;
  margin-left: 0.8rem;
  color: var(--deep-teal);
  transition: all 0.3s ease-in-out;
}

.faqs .questions dt .fa-minus {
  display: none;
}

.faqs .questions dd {
  color: var(--deep-teal);
  margin-top: 1.2rem;
  font-weight: 500;
  transition: height 0.3s ease;
}

.faqs .questions dd span {
  margin-bottom: 0.4rem;
  text-decoration: underline;
  display: inline-block;
}

/* Tour Section */
.tour {
  padding: 3rem 1.5rem;
  background-color: var(--very-light-teal);
  text-align: center;
}

.tour .header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tour .header p {
  color: var(--text-color);
  margin-bottom: 2rem;
}

.tour-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background-color: var(--very-light-teal);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 15px 15px 30px var(--light-teal),
             -15px -15px 30px var(--light-teal);
}

.tour-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.tour-form input,
.tour-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.3rem;
}

.tour-form textarea {
  resize: vertical;
}

.tour-form fieldset {
  margin-bottom: 1.5rem;
  border: none;
}

.tour-form fieldset .time-opt {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tour-form fieldset .time-opt label {
  min-width: fit-content;
  max-width: fit-content;
}

.tour-form legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.tour-form .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--very-light-teal);
  text-decoration: none;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tour-form .btn:hover {
  background-color: var(--secondary-color);
}