/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdfcf9;
  color: #333;
  line-height: 1.6;
}

/* ========== NAVBAR ========== */
.navbar {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo a {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
}

.logo span {
  color: #ffd166;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: 0.3s;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #ffd166;
}

.nav-cta a {
  background: #ffd166;
  color: #003049 !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ========== HERO ========== */
.tour-hero {
  height: 70vh;
  background: url('../assets/images/cover-tour.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.tour-hero .container {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 15px;
}

.tour-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.tour-hero p {
  margin-bottom: 25px;
  font-size: 18px;
}

.btn-primary {
  background: #ffd166;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: #003049;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e6c155;
}

/* ========== TOUR CARDS ========== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}


.tour-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.tour-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.tour-card {
  display: flex;
  flex-direction: column;
}

.tour-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-content .btn-primary {
  margin-top: auto;
  align-self: center;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-content {
  padding: 20px;
}

.tour-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0077b6;
}

.tour-content .price {
  font-weight: bold;
  margin-bottom: 10px;
  color: #003049;
}

.tour-content ul {
  margin-bottom: 10px;
  padding-left: 20px;
}

.tour-content p {
  margin-bottom: 10px;
}

/* ========== PICKUP INFO ========== */
.pickup-info {
  background: #e9f7fb;
  padding: 50px 20px;
  text-align: center;
  margin-top: 50px;
  border-radius: 15px;
}

.pickup-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0077b6;
}

.pickup-info p {
  font-size: 16px;
}

/* ========== FAQ ========== */
.faq h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: #0077b6;
}

.faq-item {
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

.faq-item p {
  font-style: italic;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #0077b6;
    display: none;
    padding: 15px 0;
    gap: 15px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .tour-packages {
    flex-direction: column;
    align-items: center;
  }

  .tour-hero h1 {
    font-size: 28px;
  }

  .pickup-info h2,
  .faq h2 {
    font-size: 24px;
  }
}
