body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
  'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f0f0f0;
  color: #2E354E;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #2E354E;
  color: white;
}

.logo-img {
  height: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: normal;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #FFD15C;
}

.nav-links a.active {
  color: #FFD15C;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFD15C;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;

  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
}

.footer-content {
  background-color: #2E354E;
  color: white;
  padding: 1rem 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 1rem;
}

.footer-left {
  flex: 1;
  font-size: 0.95rem;
  text-align: left;
}

.footer-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
  border-radius: 50%;
  background-color: white;
  padding: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-icon:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    text-align: center;
  }
}

.travel-hero {
  position: relative;
  background: url('../assets/header/travel.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.travel-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 1;
}

.travel-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  font-weight: 700;
  color: white;
  animation: fadeInUp 1s ease-out;
  display: inline-block;
}

.travel-hero h1::before,
.travel-hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 3px;
  width: 0;
  background-color: #FFD15C;
  transition: all 2s ease;
}

.travel-hero h1::before {
  left: 50%;
  transform: translateX(-50%);
}

.travel-hero h1::after {
  right: 50%;
  transform: translateX(50%);
}

.travel-hero h1.animate::before,
.travel-heror h1.animate::after {
  width: 50px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.travel-booking {
  display: flex;
  max-width: 1100px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.booking-benefit {
  flex: 2;
  background-color: #2E354E;
  color: white;
  padding: 2rem 2.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.booking-benefit p {
  margin-bottom: 1.5rem;
  font-weight: 400;
  position: relative;
}
.booking-benefit p::after {
  content: "";
  display: block;
  margin-top: 1.2rem;
  height: 1px;
  width: 100%;
  background-color: #A8AABF;
}
.booking-benefit ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.booking-benefit li {
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
}

.booking-form-box {
  flex: 3;
  padding: 2rem 2.5rem;
  background-color: #ffffff;
}
.booking-form-box h2 {
  margin-bottom: 1.5rem;
  color: #2E354E;
  font-size: 1.5rem;
  text-align: center;
}
.booking-form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-form-box .form-group {
  display: flex;
  flex-direction: column;
}
.booking-form-box input {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #A8AABF;
  border-radius: 6px;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-action {
  text-align: center;
  margin-top: 1rem;
}
.form-action button {
  background-color: #FFD15C;
  border: none;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #2E354E;
  font-size: 1rem;
}

.form-action button:hover {
  background-color: #2E354E;
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-action button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.error-msg {
  color: red;
  text-align: center;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-2.5px); }
  40% { transform: translateX(2.5px); }
  60% { transform: translateX(-1px); }
  80% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.4s ease;
  border: 1px solid red !important;
}
