#map { height: 750px; width: 100%; }


.iFont_v1 {
    font-weight: 700;
    font-size: 64px;
    text-transform: capitalize;
    color: var(--tg-theme-primary);
    margin-bottom: 3px;
}
.iFont_v2 {
    font-weight: 700;
    font-size: 64px;
    text-transform: capitalize;
    color: #19C1C4;
    margin-bottom: 3px;
}


/*
.old-price {
  text-decoration: line-through;
  opacity: .7;
  margin-right: 6px;
}
.sale-price {
  color: #d00000;
  font-weight: 600;
  font-size: 0.9em; 
}
*/


.tour-box {
  _height: 100%;
  min-height: 400px;
}




.two-columns-bc {
  columns: 2;
  column-gap: 20px; /* İsteğe bağlı: sütunlar arası boşluk */
}
.three-columns-bc {
  columns: 3;
  column-gap: 20px; /* İsteğe bağlı: sütunlar arası boşluk */
}
.four-columns-bc {
  columns: 4;
  column-gap: 20px; /* İsteğe bağlı: sütunlar arası boşluk */
}
.two-columns-grid-bc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* İsteğe bağlı aralık */
}
.tg-pricing-list ul.listeHeight {
  list-style: none; /* Varsayılan liste işaretini kaldır */
  padding-left: 0;  /* Varsayılan padding’i sıfırla (isteğe bağlı) */
}

.tg-pricing-list ul.listeHeight li {
  position: relative;
  padding-left: 20px; /* Tire işaretinin sol boşluğu için */
}

.tg-pricing-list ul.listeHeight li::before {
  content: "—"; /* Uzun tire işareti */
  position: absolute;
  left: 0;
  top: 0;
}

.tg-pricing-list ul.listeHeight li:not(:last-child) {
  margin-bottom: 2px;
}




.gallery-area a {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2; /* genel oran - örnek 300x200 */
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background-color: #000; /* siyah arka plan geçişlerde hoş durur */
}

.gallery-area img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* oran bozulmaz, kutuyu tamamen doldurur */
  object-position: center; /* ortalar */
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-area img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}





/* Ana satır hizalama */
.tg-tour-about-area .row.gx-15.mb-25 {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Sol sütun ve sağ sütunun aynı yükseklikte olmasını sağla */
.tg-tour-about-area .col-lg-7,
.tg-tour-about-area .col-lg-5 {
    display: flex;
    flex-direction: column;
}

/* Ortak stil: tüm kutular */
.tg-tour-details-video-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    flex: 1; /* sütun içinde alanı eşit şekilde paylaşır */
}

/* Görseller */
.tg-tour-details-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Video butonu ortalama */
.tg-tour-details-video-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* tam ortalama */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none; /* yalnızca ikon tıklanabilir olacak */
}

.tg-tour-details-video-inner a.tg-video-play {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;    /* ikon alanı boyutu */
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5); /* arka plan (isteğe bağlı) */
    color: #fff;
    pointer-events: auto; /* tıklanabilir hale getir */
    transition: all 0.3s ease;
}

.tg-tour-details-video-inner a.tg-video-play:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}


/* 🔹 Sol büyük görsel */
.tg-tour-about-area .col-lg-7 .tg-tour-details-video-thumb {
    aspect-ratio: 16 / 9;
    height: 100%; /* tam sütun yüksekliği */
}

/* 🔹 Sağ üst video */
.tg-tour-about-area .col-lg-5 .col-12 .tg-tour-details-video-thumb {
    aspect-ratio: 3 / 2;
}

/* 🔹 Sağ alttaki iki küçük kare */
.tg-tour-about-area .col-lg-5 .col-lg-6 .tg-tour-details-video-thumb {
    aspect-ratio: 2 / 1;
}

/* Responsive (mobilde dikey görünüm) */
@media (max-width: 992px) {
    .tg-tour-about-area .row.gx-15.mb-25 {
        flex-direction: column;
    }

    .tg-tour-about-area .col-lg-7,
    .tg-tour-about-area .col-lg-5 {
        width: 100%;
        display: block;
    }

    .tg-tour-details-video-thumb {
        aspect-ratio: auto;
        height: auto;
    }
}