/* Senin Mevcut Yapın + Modern Dokunuşlar */
.modern-itinerary { padding: 80px 0; background: #fff; overflow: hidden; }

.itinerary-header { text-align: center; margin-bottom: 80px; }
.itinerary-header h1 { font-size: 52px; color: #1d1d1f; letter-spacing: -1px; }
.itinerary-header h1 span { color: #86868b; font-weight: 300; }

.itinerary-grid { display: flex; flex-direction: column; gap: 80px; }

/* Reveal Animasyonu Başlangıç Durumu */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.itinerary-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fbfbfd;
  border-radius: 40px;
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.itinerary-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  background: #fff;
}

.itinerary-row.reverse { flex-direction: row-reverse; }

.itinerary-image {
  flex: 1;
  position: relative;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.itinerary-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.itinerary-row:hover .itinerary-image img { transform: scale(1.08); }

/* Glassmorphism Overlay */
.image-overlay {
  position: absolute;
  top: 25px; left: 25px;
  background: rgba(0, 102, 204, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}

.itinerary-text { flex: 1; padding: 40px; }
.itinerary-text h3 { font-size: 34px; margin-bottom: 25px; color: #1d1d1f; letter-spacing: -0.5px; }
.itinerary-text p { font-size: 17.5px; line-height: 1.8; color: #424245; text-align: justify; }

.itinerary-row.highlight { 
  background: linear-gradient(145deg, #eef6ff 0%, #ffffff 100%);
  border: 1px solid rgba(0,102,204,0.1); 
}

@media (max-width: 992px) {
  .itinerary-row, .itinerary-row.reverse { flex-direction: column; gap: 30px; padding: 20px; }
  .itinerary-image { height: 300px; width: 100%; }
  .itinerary-text { padding: 20px; }
}

/* --- Animasyon Mutfağı --- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

/* JS Tetiklediğinde Aktif Olacak Hali */
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Görsel Zoom Efekti */
.itinerary-image img {
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.itinerary-row:hover .itinerary-image img {
  transform: scale(1.08);
}