/* HERO SWIPER */
.hero-swiper {
  width: 100%;
  height: 750px;
  max-height: 750px;
  position: relative;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-swiper .swiper-slide img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  
  z-index: 2;
}

.hero-swiper .swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  background-color: var(--orange-5) !important;
  opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--orange-3) !important;
  opacity: 1;
}

.hero-swiper .slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: white;
  z-index: 3;
  pointer-events: auto;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  transition: all 0.6s ease;
}

.hero-swiper .slide-caption.animate {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-swiper .slide-caption .headline {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-swiper .slide-caption .slogan {
  font-size: 24px;
  margin-top: 15px;
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
}

.hero-swiper .slide-caption .hero-btn {
  display: inline-block;
  background: var(--orange-3);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-swiper .slide-caption .hero-btn:hover {
  background: var(--orange-5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

/* Slider Date Badges Container */
.slider-date-badges {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 200px));
  z-index: 10;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Slider Date Badge */
.slider-date-badge {
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.95), rgba(255, 102, 0, 0.95));
  color: white;
  padding: 18px 32px;
  border-radius: 35px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 128, 0, 0.5),
              0 0 30px rgba(255, 128, 0, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: neon-glow-orange 2s ease-in-out infinite alternate;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Mobil için küçük boyut */
@media (max-width: 768px) {
  .slider-date-badges {
    transform: translate(-50%, calc(-50% - 150px));
    gap: 8px;
    flex-wrap: nowrap; /* Mobile'da yan yana göster */
  }
  
  .slider-date-badge {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    white-space: nowrap; /* Metni tek satırda tut */
  }
}

@keyframes neon-glow-orange {
  from {
    box-shadow: 0 4px 20px rgba(255, 128, 0, 0.5),
                0 0 30px rgba(255, 128, 0, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  to {
    box-shadow: 0 4px 25px rgba(255, 128, 0, 0.7),
                0 0 40px rgba(255, 128, 0, 0.9),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

/* TOURS */
.tours {
  width: 100%;
  padding: 70px 20px 30px 20px;
}

.tour-swiper {
  padding: 40px 20px;
  margin-top: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tour-swiper .swiper-wrapper {
  display: flex;
}

.tour-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}

.tour-swiper .swiper-slide img {
  transform: scale(1);
  transition: all 0.3s ease;
}

.tour-swiper .swiper-slide:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.tour-card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}


.card-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 160px;
}

.card-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.card-info p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
}

.card-info button {
  align-self: flex-end;
  background: var(--orange-3);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.tour-pagination {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.tour-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--orange-5);
  opacity: 0.5;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.tour-pagination .swiper-pagination-bullet-active {
  background-color: var(--orange-3);
  opacity: 1;
}

@media (max-width: 1024px) {
  .tour-nav {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .tour-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }
}