 /* HERO SECTION */
    .destination-hero {
      position: relative;
      min-height: 90vh;
      background: 
        linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url('assets/images/about-us.png') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 0 8%;
      color: #fff;
      overflow: hidden;
    }
    /* TOUR HERO SECTION */
.tour-hero {
  position: relative;
  min-height: 95vh;
  background: 
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url('assets/images/about-us.png') center/cover no-repeat;
  background-attachment: fixed; /* parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  overflow: hidden;
  color: #fff;
}

/* GOLD MOVING OVERLAY */
.tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,204,0,0.08),
    rgba(255,215,0,0.02),
    rgba(255,204,0,0.08)
  );
  animation: goldFlow 18s linear infinite;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255,204,0,0.15);
  color: #ffcc00;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* BUTTON */
.btn-primary {
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #0b0b0b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255,204,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255,204,0,0.5);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,204,0,0.7);
  border-radius: 25px;
  display: flex;
  justify-content: center;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #ffcc00;
  border-radius: 50%;
  margin-top: 10px;
  animation: scrollDown 2s infinite;
}
/* Wrapper to position icon inside input */
.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input-wrapper input {
  width: 100%;
  padding: 15px 20px 15px 40px; /* left padding for icon */
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.search-input-wrapper input::placeholder {
  color: #ccc;
}

/* Magnifying glass icon */
.search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #ffd700;
  font-size: 16px;
  pointer-events: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Hover shine effect */
.tour-search:hover .search-input-wrapper input {
  box-shadow: 0 0 15px rgba(255,204,0,0.3);
}

/* Hover on icon glow */
.tour-search:hover .search-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  color: #ffcc00;
}

/* Button */
.tour-search button {
  padding: 0 30px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  border: none;
  color: #0b0b0b;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.tour-search button:hover {
  background: #ffd700;
  transform: translateY(-2px);
}

/* Full search bar container */
.tour-search {
  display: flex;
  max-width: 520px;
  margin: 30px auto 40px auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes goldFlow {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(50%) rotate(360deg); }
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .btn-primary {
    padding: 12px 32px;
    font-size: 16px;
  }
}
/* TOUR SEARCH BAR */
.tour-search {
  display: flex;
  max-width: 520px;
  margin: 30px auto 40px auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tour-search input {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
}

.tour-search input::placeholder {
  color: #ccc;
}

.tour-search button {
  padding: 0 30px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  border: none;
  color: #0b0b0b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tour-search button:hover {
  background: #ffd700;
  transform: translateY(-2px);
}

/* Adjust hero content for search bar */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}
 .featured-tours {
  padding: 80px 6%;
  background: #0b0b0b;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.tours-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tours-header h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

.tours-header .line {
  width: 80px;
  height: 2px;
  background: #bfa74f;
}

/* Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Tour Card */
.tour-card {
  position: relative;
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,204,0,0.05), rgba(255,204,0,0.1), rgba(255,204,0,0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tour-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
}

.tour-image img {
  width: 100%;
  display: block;
  border-bottom: 2px solid #bfa74f;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

/* Tour Content */
.tour-content {
  padding: 20px;
  text-align: left;
}

.tour-content h3 {
  color: #ffcc00;
  font-size: 22px;
  margin-bottom: 10px;
}

.tour-content p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tour-info {
  display: flex;
  justify-content: space-between;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 15px;
}

.tour-info i {
  margin-right: 6px;
  color: #ffd700;
}

/* Book Now Button */
.btn-outline {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #ffd700;
  border-radius: 50px;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: #ffd700;
  color: #0b0b0b;
}

/* Responsive */
@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .tours-header h2 {
    font-size: 32px;
  }
}
.why-travel {
  padding: 80px 6%;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

.section-header .line {
  width: 80px;
  height: 2px;
  background: #bfa74f;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Individual Card */
.benefit-card {
  background: #111111;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,204,0,0.05), rgba(255,204,0,0.1), rgba(255,204,0,0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card:hover::before {
  opacity: 1;
  animation: shimmer 3s linear infinite;
}

/* Icon */
.benefit-card .icon {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 15px;
}

/* Title */
.benefit-card h4 {
  font-size: 20px;
  color: #ffcc00;
  margin-bottom: 10px;
}

/* Text */
.benefit-card p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

