/* =================================================
   Tours List Page Styles (mainturlar.php)
================================================= */
.corporate-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../images/turlar-hero.png');
  background-size: cover;
  background-position: center;
}
.corporate-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.corporate-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 100px;
}

/* 3×2 grid için */
.tours-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.tours-list .tour-item {
  flex: 0 0 calc(33.333% - 1rem);
}
@media (max-width: 767px) {
  .tours-list .tour-item { flex: 0 0 100%; }
}

/* reuse genel thumbnail, fleet-img, caption, btn-primary */
.thumbnail {
  background:#fff;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  overflow:hidden;
}
.fleet-img {
  width:100%;
  height:200px;
  object-fit:cover;
}
.caption {
  padding:15px;
}
.caption h4 {
  font-weight:600;
  margin-bottom:0.5rem;
}
.btn-primary {
  background:#ff3300;
  border-color:#ff3300;
  font-size:0.9rem;
}
.btn-primary:hover {
  background:#e62e00;
  border-color:#e62e00;
}
