/* ==========================================================================
   Tours Page - Khazab Travels
   ========================================================================== */

/* --------------------------------------------------------------------------
   Inner Hero Section
   -------------------------------------------------------------------------- */
.inner-hero.tours-hero {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(7, 24, 38, 0.72), rgba(7, 24, 38, 0.72)),
    url("https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  color: var(--white);
  text-align: center;
}
.inner-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.inner-hero-content h1 {
  font-family: Poppins, sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  margin: 16px 0;
  line-height: 1.1;
}
.inner-hero-content p {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.breadcrumb-nav a {
  color: var(--orange);
  transition: color 0.3s ease;
}
.breadcrumb-nav a:hover {
  color: var(--white);
}
.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Tours Page Section & Toolbar
   -------------------------------------------------------------------------- */
.tours-page-section {
  padding: 80px 0;
  background: var(--soft);
}
.tours-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(18, 44, 72, 0.05);
}
.results-count {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.tour-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}
.tour-filter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-filter-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tour-filter-field select,
.tour-filter-field input {
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--soft);
  outline: none;
  min-width: 220px;
  transition: border-color 0.3s ease;
}
.tour-filter-field select:focus,
.tour-filter-field input:focus {
  border-color: var(--teal);
}
.tour-filter-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.filter-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}
.filter-btn-primary:hover {
  background: var(--teal-dark);
}
.filter-btn-reset {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.filter-btn-reset:hover {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Tours Info Strip
   -------------------------------------------------------------------------- */
.tours-info-strip {
  padding: 80px 0;
  background: var(--ink);
  color: var(--white);
}
.tours-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.tours-info-card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}
.tours-info-card:hover {
  transform: translateY(-5px);
}
.tours-info-card i {
  font-size: 40px;
  color: var(--orange);
  margin-bottom: 20px;
}
.tours-info-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.tours-info-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Responsive Rules
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .tours-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .tour-filter-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .tour-filter-field select,
  .tour-filter-field input {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .tours-info-grid {
    grid-template-columns: 1fr;
  }
  .inner-hero.tours-hero {
    padding: 140px 0 80px;
  }
}
