html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}


body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
body {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer and Edge (Legacy) */
  overflow: auto;
  overflow-x: hidden;
  /* Still allow scrolling */
  -webkit-overflow-scrolling: touch;

}

h1 {
  font-size: 24px;
}

p {
  font-size: 14px;
  color: #3C3131;
}


.hero-img {
  width: 100%;
  height: auto;
}

.hero-img img {
  width: 90%;
  max-width: 500px;
  max-height: 400px;
}

.hero-content {
  width: 90%;
  margin: 0 auto;
}

.hero-content h1 {
  color: #000;
  text-align: left;
  margin-top: 25px !important;
  width: 100%;
  left: 20px;

}

.hero-content p {
  text-align: left;
  margin-top: 5px !important;
  width: 100%;
  left: 20px;
}

/* Main Container */
.destination-container {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 20px;
  padding-bottom: 20px !important;
}

.search-box-wrapper {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title */
.search-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: left;
}

/* Search Input Section */
.search-input-wrapper {
  position: relative;
  margin-bottom: 28px;
}

.search-input {
  width: 100%;
  padding: 14px 45px 14px 45px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: #F0B732;
  box-shadow: 0 0 0 3px rgba(240, 183, 50, 0.1);
}

.search-input::placeholder {
  color: #999;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.arrow-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-icon:hover {
  transform: translateY(-50%) translateX(3px);
}

/* Popular Section */
.popular-section {
  margin-bottom: 24px;
}

.popular-title {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 16px;
  text-align: left;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 12px 8px 8px;
  display: flex;
  align-items: flex-end;
}

.destination-name {
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #F0B732 0%, #e6a825 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 183, 50, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 183, 50, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Active/Selected State */
.destination-card.selected {
  transform: translateY(-5px);
  box-shadow: 0 0 0 3px #F0B732;
}

.spacer {
  height: 0px;
}

.trust {
  background-color: #F0B7320D;
  padding-bottom: 30px;
  padding-top: 10px;
}

.trust-box {
  width: 48%;
  display: inline-block;
  height: 168px;
  margin: 0 auto;
  margin-top: 20px;
  vertical-align: top;
}

.trust-box h2 {
  font-size: 14px;
  width: 95%;
  font-weight: 700;
  margin: 10px auto;

}

.trust-box p {
  font-size: 12px;
  color: #3C3131;
  width: 95%;
  margin: 0 auto;
}

.trust-box img {
  height: 55px;
  width: 55px;
  margin-bottom: 10px;
}

.carousel {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  max-width: 550px;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: flex;
  gap: 15px;
}

.card {
  flex: 1;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

}

.card span {
  position: absolute;
  font-family: "pacifo";
  bottom: 18px;
  left: 18px;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: #F0B732 1px solid;
  transition: all 0.3s ease;
}

.dot.active {
  background: #F0B732;
  transform: scale(1.2);
  border: none;
}

.popular-destination {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.popular-destination h1 {
  font-weight: 600;
  color: #1a1a1a;
  margin-left: 25px;
  margin-bottom: 10px;
  text-align: left;
}

.popular-destination p {
  color: #84847A;
  margin-left: 25px;
  margin-bottom: 20px;
  text-align: left;
}

.cta {
  margin: 25px;
  padding: 10px 20px;
  border: none;
  color: white;
  font-weight: 700;
  background-color: #F0B732;
  border-radius: 50px;
}

.destination-pc {
  display: none;
}

.upcoming {
  background-color: #F0B7321a;
}

.trip-card {
  width: 240px;
  margin: 10px auto;
  display: inline-block;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Dark gradient */
.overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  bottom: 10px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0),
      rgba(0, 0, 0, 0.1));
  z-index: 1;
}


/* Bottom content */
.card-bottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.card-bottom h4 {
  font-size: 16px;
  margin-bottom: 8px;
  min-width: 50px;
  max-width: 150px;
  font-weight: 600;
}

.meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price del {
  opacity: 0.6;
  font-size: 14px;
}

.price strong {
  font-size: 18px;
  color: #facc15;
}

.upcoming h1 {
  margin-left: 25px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
  padding-top: 40px;
}

.upcoming p {
  margin-left: 25px;
  margin-bottom: 20px;
  text-align: left;
  color: #84847A;
}

.testimonials {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
}

.test-top {
  margin-bottom: 5px;
}

.test-bottom {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Angkor";
  width: auto;
  color: #F0B732;
}

.testimonial p {
  margin-left: 25px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Angkor";
  width: 90%;


  color: #3C3131;
}

.carousel-container {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 40px;
}


.carousel-wrapper {
  display: flex;
  transition: transform 0.3s ease-out;
}

.carousel-slide {
  min-width: 100%;

  height: auto;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: white;
  user-select: none;
}

.carousel-indicators {
  position: relative;
  display: flex;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #F0B732;
  background-color: white;
  transition: background 0.3s;
}

.indicator.active {
  background: #F0B732;
}

.cta-section {
  background-color: #F0B7321A;
  padding: 30px 0px;
}

.cta-section img {
  margin-bottom: 20px;
}

.cta-section h1 {
  margin-top: 20px !important;
  width: 80%;
  font-weight: 600;
  margin: 0 auto;
}

.cta-section p {
  margin-top: 20px !important;
  width: 80%;
  margin: 0 auto;
}

.form-container {
  background: white;
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  margin-top: 30px !important;
  margin: 0 auto;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="tel"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input::placeholder {
  color: #999;
}

/* Date input styling */
input[type="date"] {
  cursor: pointer;
  color: #666;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

/* Phone number container */
.phone-container {
  display: flex;
  gap: 8px;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.flag {
  font-size: 18px;
}

.phone-input-wrapper {
  flex: 1;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #FFA726 0%, #FF7043 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Footer text */
.footer-text {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 16px;
  line-height: 1.5;
}

/* Success message */
.success-message {
  display: none;
  background: #4CAF50;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

.success-message.show {
  display: block;
}

.footer-text{
  margin: 0 auto !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 480px) {
  .search-box-wrapper {
    padding: 24px 20px;
  }

  .search-title {
    font-size: 20px;
  }

  .destinations-grid {
    gap: 10px;
  }

  .destination-name {
    font-size: 12px;
  }
  .form-container {
    padding: 24px;
  }

  .country-code {
    padding: 12px 10px;
  }
}

@media (min-width:576px) {
  .trip {
    max-width: 788px;
    margin: 0 auto;
  }

  .hero-content h1,
  .hero-content p {
    text-align: left;
    margin: 0 auto;
    width: 80%;
  }

  .trip-card {

    margin-right: 20px;
    margin-bottom: 20px;
  }
}



@media (min-width: 992px) {
  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .trust-box h2 {
    font-size: 16px;
  }

  .trust-box p {
    font-size: 14px;
  }

  .navbar-brand {
    position: relative;
    left: 15px;
  }

  .navbar-collapse {
    position: static;
    overflow-x: visible;
    top: auto;
    width: 100%;
    margin: 0;
    max-height: none;
    background-color: transparent;
    overflow-y: visible;
    z-index: auto;
    border-radius: 0;
    padding: 0;
    flex-basis: 100% !important;
    flex-grow: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .navbar-nav {
    flex-direction: row;
    margin: 0 !important;
  }

  .navbar-collapse .nav-link {
    margin: 0 15px;
    color: #000 !important;
    padding: 8px 15px;
  }

  #cta0 {
    display: block;
    border: none;
    outline: none;
    background-color: #F0B732;
    color: white !important;
    padding: 8px 16px;
    height: 40px;
    width: 175px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 0px;
    letter-spacing: 1px;
    border-radius: 40px;
    position: relative;
    right: 15px;
  }

  .navbar-collapse .nav-link {
    margin-right: 5px;
  }

  .hero-content {
    width: 39%;
    position: absolute;
    left: 0px;
    top: 200px;
  }

  .hero-content h1,
  .hero-content p {
    text-align: left;
    margin-left: 7%;
    width: 90%;
    margin-bottom: 20px;
  }

  .hero-img {
    width: 59%;
    position: absolute;
    right: 0px;
  }

  .hero-img img {
    width: 100%;
    position: absolute;
    right: 0px;
    max-width: 870px;
    max-height: 580px;
    z-index: -2;
  }

  .destination-container {
    z-index: 5;
    position: absolute;
    right: 50px;
    max-width: 340px;
    top: 190px;
  }

  .spacer {
    height: 580px;
  }

  .trust {
    padding-bottom: 20px;
  }

  .trust-box {
    width: 23.5%;
  }

  .carousel {
    display: none;
  }

  .destination-pc {
    display: block;
    gap: 20px;
    width: 80%;
    max-width: 1032px;
    margin: 0 auto;
  }

  .popular-destination h1 {
    width: 320px;
    margin: 0 auto;
  }

  .popular-destination p {
    width: 768px;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .card {
    width: 30%;
    margin-right: 15px;
    margin-bottom: 20px;
    gap: 20px;
    max-width: 240px;
    border: none;
    height: auto;
    display: inline-flex;
    aspect-ratio: 1 / 1;
  }

  .upcoming h1 {
    width: 320px;

    margin: 0 auto;
  }

  .upcoming p {
    width: 768px;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .trip {
    width: 80%;
    max-width: 1300px;
  }

  .trip-card {
    width: 20%;
    margin-right: 40px;

  }

  .carousel-container {
    display: none;
  }

  .test {
    width: 30%;
    margin-top: 20px;
    margin-right: 10px;
    aspect-ratio: 3/4;
    display: inline-block;
    background-color: #F0B732;
    max-width: 380px;
  }
  
  .cta-content
  {
    width: 55%;
    position: relative;
    display: inline-block;
    vertical-align: top;text-align: left;
    margin: 3% auto;
  }
  .cta-content img{
    width: 300px;
    height: 255px;
  }
  .form-container{
    width: 30%;
    display: inline-block;
    max-width: 380px;
    vertical-align: top;
    margin-top: 0px !important;
  }
  .cta-content h1, .cta-section p{
    margin: 0;

  }

}

@media (min-width:1400px) {
  

  .hero-content h1,
  .hero-content p {
    margin-left: 13%;

  }

  .card {
    margin-bottom: 30px;
    margin-right: 40px;
  }

  #upc-cta {
    width: 7%;
  }

  .test {
    margin-right: 20px;
  }
}