/* TOP BAR */
.topbar {
  background: #2f3a45;
  text-align: center;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

/* NAVBAR */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 2rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow {
  font-size: 0.65rem;
  opacity: 0.7;
}

.sale-tag {
  background: #ff4d4d;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  min-width: 180px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.18s ease;
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* LOGO */
.nav-logo h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
}

.reviews {
  font-size: 0.85rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

/* HERO SECTION */
/* HERO SECTION */
.travel-hero {
  position: relative;
  padding: 4rem 2rem 6rem;
  background: #f7f2ea;
  overflow: hidden;
}

.travel-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* CENTER CONTENT */
.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2b1d12;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6b5a4a;
  margin-bottom: 1.8rem;
}

.hero-btn {
  display: inline-block;
  background: #5a3a1a;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* BADGE ROW AT BOTTOM */
.badge-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 1rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}

.badge-item {
  text-align: center;
}

.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #eef2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 0.75rem;
}

.badge-item h4 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 600;
  color: #2b1d12;
}

.badge-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b5a4a;
}



/* RIBBON */
.hero-ribbon {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 80px;
  background: linear-gradient(90deg, #ffb36a, #ff7f50, #ffb36a);
  border-radius: 999px;
  transform: rotate(-4deg);
  opacity: 0.35;
  z-index: 1;
}










