/* ─────────────────────────────────────────
   NBK Touristic — tours.css
───────────────────────────────────────── */

/* ─────────────────────────
   SECTION
───────────────────────── */
.tours-section {
  background: #f5f8fc;
  padding: 88px 0 96px;
}

.tours-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ─────────────────────────
   BAŞLIK
───────────────────────── */
.tours-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.tours-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a5fad;
  margin-bottom: 12px;
}
.tours-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: #1a5fad;
  border-radius: 2px;
}

.tours-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #0f1c2e;
  line-height: 1.1;
}
.tours-title span { color: #1a5fad; }

.tours-all-link {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a5fad;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(26,95,173,0.25);
  transition: border-color 0.2s, gap 0.2s;
  flex-shrink: 0;
}
.tours-all-link svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.tours-all-link:hover { border-color: #1a5fad; }
.tours-all-link:hover svg { transform: translateX(4px); }

/* ─────────────────────────
   GRID
───────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─────────────────────────
   KART
───────────────────────── */
.tour-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: #0a1628;

  /* hover transform */
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 28, 46, 0.18);
}

/* Görsel */
.tour-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tour-card:hover .tour-card-img {
  transform: scale(1.07);
}

/* Gradient overlay — normal */
.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.25) 50%,
    rgba(10, 22, 40, 0.05) 100%
  );
  transition: background 0.4s ease;
}

/* Gradient — hover'da biraz daha koy */
.tour-card:hover .tour-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.4) 55%,
    rgba(10, 22, 40, 0.1) 100%
  );
}

/* İçerik */
.tour-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

/* Kategori etiketi */
.tour-card-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 10px;

  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.tour-card:hover .tour-card-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Başlık */
.tour-card-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: transform 0.35s ease;
}
.tour-card:hover .tour-card-title {
  transform: translateY(-2px);
}

/* Alt bilgi satırı */
.tour-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tour-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 240px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
  flex: 1;
}
.tour-card:hover .tour-card-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Ok ikonu */
.tour-card-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.tour-card-arrow svg {
  width: 15px; height: 15px;
  stroke: white; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.tour-card:hover .tour-card-arrow {
  background: #1a5fad;
  border-color: #1a5fad;
  transform: rotate(-45deg);
}

/* ─────────────────────────
   RESPONSIVE
───────────────────────── */
@media (max-width: 1024px) {
  .tours-inner { padding: 0 32px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .tours-section { padding: 56px 0 64px; }
  .tours-inner { padding: 0 20px; }
  .tours-grid { grid-template-columns: 1fr; gap: 14px; }
  .tours-head { flex-direction: column; align-items: flex-start; }
  .tour-card { aspect-ratio: 16 / 10; }
  .tour-card-tag { opacity: 1; transform: none; }
  .tour-card-desc { opacity: 1; transform: none; }
}

/* ─────────────────────────
   SCROLL REVEAL
───────────────────────── */
.tours-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.tours-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Başlık gecikmesi */
.tours-head.tours-reveal        { transition-delay: 0s; }

/* Kartlar sıralı gecikme */
.tour-card.tours-reveal:nth-child(1) { transition-delay: 0.05s; }
.tour-card.tours-reveal:nth-child(2) { transition-delay: 0.15s; }
.tour-card.tours-reveal:nth-child(3) { transition-delay: 0.25s; }
.tour-card.tours-reveal:nth-child(4) { transition-delay: 0.35s; }
.tour-card.tours-reveal:nth-child(5) { transition-delay: 0.45s; }
.tour-card.tours-reveal:nth-child(6) { transition-delay: 0.55s; }