﻿
/* 1) Firefox: thin'i kapat */
html, body {
    scrollbar-width: auto !important; /* thin -> auto */
    scrollbar-color: auto !important; /* varsa renk override’ını da sıfırlar */
}

    /* 2) Chrome / Edge / Safari: template'in ince width'ini ez */
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 12px !important; /* default’a yakın */
        height: 12px !important;
    }

    /* Track (arka kanal) */
    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track {
        background: #e5e7eb !important;
    }

    /* Thumb (tutulan kısım) */
    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb {
        background: #6b7280 !important;
        border-radius: 999px !important;
        border: 3px solid #e5e7eb !important;
    }

        html::-webkit-scrollbar-thumb:hover,
        body::-webkit-scrollbar-thumb:hover {
            background: #4b5563 !important;
        }

/* Desktop: logonun altında küçük badge */
.tursab-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #123f7c;
    background: rgba(255,255,255,0.90);
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1.2;
}

/* Mobile: header altında tek satır full-width şerit */
.tursab-strip {
    width: 100%;
    background: rgba(255,255,255,0.92);
    color: #123f7c;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  
}




.home-hero {
    position: relative;
}

    .home-hero .carousel-item {
        max-height: 480px; /* slider toplam yüksekliği */
    }

        .home-hero .carousel-item img {
            height: 480px;
            object-fit: fill;
            width: 100%
        }

    .home-hero .home-search-overlay {
        position: absolute;
        left: 50%;
        bottom: 5%; /* İstersen 5%, 15% vs. oynayabilirsin */
        transform: translateX(-50%);
        z-index: 5;
        width: 100%;
        pointer-events: auto;
    }

.hero-carousel {
    display: block;
}

.mobile-promo-slider {
    display: none;
}


.form .btn {
    width: 100%
}


.item-search-tabs .tab-content {
    background-color: rgba(255,255,255,0.9) !important;
}

[v-cloak] {
    display: none;
}
/* Yükleme sırasında içeriği flu yapmak için */
.content-blur {
    filter: blur(3px);
    pointer-events: none; /* tıklanamasın */
}

/* Yükleme overlay'i */
.loading-overlay {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.loading-overlay-inner {
    text-align: center;
    font-size: 14px;
    color: #555;
}

    .loading-overlay-inner i {
        font-size: 28px;
        margin-bottom: 8px;
        display: block;
    }

/* WhatsApp modalı ekran ortasına sabitle */
#layoutWaLeadModal .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: calc(100% - 2rem);
    max-width: 320px; /* istersen */
}

#layoutCallMeModal .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: calc(100% - 2rem);
    max-width: 320px; /* istersen */
}

/* Telefon + WhatsApp linkleri hover efekti */
a.callnumber,
a[data-wa-lead="1"] {
    display: inline-flex; /* icon + yazı yan yana kalsın */
    align-items: center;
    transition: transform .15s ease; /* animasyon */
    transform-origin: left center;
    will-change: transform;
}

    a.callnumber:hover,
    a[data-wa-lead="1"]:hover {
        transform: scale(1.06); /* büyüme oranı */
    }


.mobile-fab-wrap {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    display: none; /* default: gizli */
    flex-direction: column;
    gap: 10px;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-fab {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: transform .15s ease;
}

    .mobile-fab i {
        font-size: 22px;
    }

    .mobile-fab:active {
        transform: scale(.95);
    }

.mobile-fab-phone {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(0,0,0,.10);
}

.mobile-fab-wa {
    background: #25D366;
    color: #ffffff;
}


/* Hover + focus (desktop / mouse) */
.mobile-fab:hover,
.mobile-fab:focus-visible {
    transform: scale(1.08);
}

/* Tıklarken (mobilde en çok bu çalışır) */
.mobile-fab:active {
    transform: scale(0.95);
}

/* Daha yumuşak his için */
.mobile-fab {
    transition: transform .15s ease, box-shadow .15s ease;
}

    .mobile-fab:hover {
        box-shadow: 0 14px 30px rgba(0,0,0,.22);
    }

    .mobile-fab:hover,
    .mobile-fab:focus-visible {
        transform: translateY(-2px) scale(1.08);
    }

a.callnumber,
a[data-wa-lead="1"],
a[data-callme-lead="1"] {
    display: inline-flex;
    align-items: center;
    transition: transform .15s ease;
    transform-origin: left center;
    will-change: transform;
}

    a.callnumber:hover,
    a[data-wa-lead="1"]:hover,
    a[data-callme-lead="1"]:hover {
        transform: scale(1.06);
    }

/* Mobil FAB rengi istersen */
.mobile-fab-callback {
    color: #fff;
}

.header-links li:not(:last-child):after {
    background: none
}

.fab-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

    /* hover büyüme efekti sende varsa kalabilir, yoksa: */
    .fab-item .mobile-fab {
        transition: transform .15s ease;
    }

        .fab-item .mobile-fab:hover {
            transform: scale(1.08);
        }

/* üst sağ pill butonlar */
.top-contact-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap; /* dar ekranda aşağı insin */
}

/* pill */
.top-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: transparent !important;
    border-radius: 8px;
    text-decoration: none !important;
    line-height: 1;
    box-shadow: none !important;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .top-pill:hover {
        box-shadow: none !important;
        border-color: rgba(255,255,255,.55) !important;
    }

    .top-pill i {
        font-size: 20px;
    }

/* whatsapp */
.top-pill--wa i {
    color: #25D366;
}

.top-pill--wa .top-pill-text {
    color: #0f172a;
    font-weight: 600;
}

.top-pill--callme i {
    color: #fff !important;
}

.top-pill--callme .top-pill-text {
    color: #fff !important;
    font-weight: 800;
    letter-spacing: .2px;
}

.top-pill--center .center-label {
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
}

.top-pill--center .center-value {
    color: #fff !important;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .3px;
}

.top-pill,
.top-pill .top-pill-text,
.top-pill--center .center-label {
    color: #fff !important;
}

.top-pill {
    will-change: transform;
    transform-origin: center;
}

    .top-pill:hover,
    .top-pill:focus-visible {
        transform: translateY(-1px) scale(1.06) !important;
    }

    /* mobilde hover olmadığı için dokununca çalışsın */
    .top-pill:active {
        transform: scale(.97) !important;
    }

@media (max-width: 768px) {

    .hero-carousel {
        display: none !important;
    }

    .mobile-promo-slider {
        display: block !important;
    }
    /* Arama alanını zaten alta indiriyorsun; ortalamayı koru */
    .home-hero .home-search-overlay {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

        .home-hero .home-search-overlay .container {
            box-shadow: 0 10px 30px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);
        }

    .select2.select2-container {
        border: 1px solid darkgray;
        border-radius: 5px !important;
    }

    .mobile-promo-slider {
        padding: 12px 0 14px;
    }

        .mobile-promo-slider .promo-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

            .mobile-promo-slider .promo-track::-webkit-scrollbar {
                display: none;
            }

        .mobile-promo-slider .promo-card {
            flex: 0 0 100%;
            max-width: 520px;
            scroll-snap-align: center;
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 28px rgba(17,24,39,.12);
            display: block;
        }
            /* Dikdörtgen + cover */
            .mobile-promo-slider .promo-card img {
                width: 100%;
                aspect-ratio: 16 / 9;
                height: auto;
                object-fit: cover;
                display: block;
            }
        /* DOTS */
        .mobile-promo-slider .promo-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            padding: 0 16px;
        }

            .mobile-promo-slider .promo-dots button {
                width: 8px;
                height: 8px;
                border-radius: 999px;
                border: 0;
                background: rgba(0,0,0,.22);
                padding: 0;
            }

                .mobile-promo-slider .promo-dots button.is-active {
                    width: 18px;
                    background: #dc3545;
                }

    #Slider .carousel-item img {
        height: 420px; /* Telefonlarda slider biraz uzasın */
        object-fit: cover;
    }

    .home-hero .home-search-overlay {
        bottom: 2%; /* Gerekirse burayı da oynarsın */
    }
}

@media (max-width: 991.98px) {
    .mobile-fab-wrap .fab-item[data-fab-key="phone"] {
        position: fixed;
        top: calc(14px + env(safe-area-inset-top));
        right: 14px;
        bottom: auto;
        z-index: 10050; /* header üstünde kalsın diye */
    }

    .top-contact-pills {
        display: none !important;
    }

    .callmeback-li {
        display: none !important;
    }

    .mobile-fab-wrap {
        display: flex;
    }
}

/* TAB WRAPPER: scroll burada */
#mainSearchForm .item-search-menu .tab-scroll {
    overflow-x: auto;
    overflow-y: visible; /* ok taşabilsin */
    -webkit-overflow-scrolling: touch;
    max-width: calc(100vw - 30px);
    margin: 0 auto;
    scrollbar-width: none;
    padding-bottom: 14px; /* ok için boşluk */
    margin-bottom: -14px;
}

    #mainSearchForm .item-search-menu .tab-scroll::-webkit-scrollbar {
        display: none;
    }

/* TAB BAR: ok burada çizilecek -> visible olmalı */
#mainSearchForm .item-search-menu ul.nav.tab-bar {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
    border-radius: 12px 12px 0 0;
    overflow: visible; /* ok kesilmesin */
    box-shadow: 0 10px 22px rgba(17,24,39,.10);
    position: relative;
}

    /* item */
    #mainSearchForm .item-search-menu ul.nav.tab-bar > li {
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

        /* link */
        #mainSearchForm .item-search-menu ul.nav.tab-bar > li > a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 62px;
            width: 92px; /* desktop */
            padding: 10px 8px !important;
            margin: 0 !important;
            color: #fff !important;
            text-decoration: none !important;
            font-weight: 800;
            font-size: 13px;
            line-height: 1.05;
            -webkit-tap-highlight-color: transparent;
            position: relative; /* ok için */
        }

            /* ikon */
            #mainSearchForm .item-search-menu ul.nav.tab-bar > li > a i {
                font-size: 18px;
                line-height: 1;
                opacity: .95;
            }

        /* köşeler */
        #mainSearchForm .item-search-menu ul.nav.tab-bar > li:first-child > a {
            border-top-left-radius: 12px !important;
        }

        #mainSearchForm .item-search-menu ul.nav.tab-bar > li:last-child > a {
            border-top-right-radius: 12px !important;
        }

/* renk + değişken */
#mainSearchForm .item-search-menu li.tab-red > a {
    background: #e11d2e;
    --tabbg: #e11d2e;
}

#mainSearchForm .item-search-menu li.tab-yellow > a {
    background: #f2b705;
    --tabbg: #f2b705;
    color: #1f2937 !important;
}

#mainSearchForm .item-search-menu li.tab-navy > a {
    background: #1f2a44;
    --tabbg: #1f2a44;
}

#mainSearchForm .item-search-menu li.tab-blue > a {
    background: #3b82f6;
    --tabbg: #3b82f6;
}

#mainSearchForm .item-search-menu li.tab-orange > a {
    background: #f97316;
    --tabbg: #f97316;
}

/* ACTIVE OK (dışarı taşan B2C ok) */
#mainSearchForm .item-search-menu ul.nav.tab-bar > li > a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px; /* dışarı taşsın */
    width: 14px;
    height: 14px;
    background: var(--tabbg);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 3px;
    box-shadow: 0 10px 18px rgba(17,24,39,.18);
    z-index: 10;
}

/* MOBİL: tabları daralt */
@media (max-width: 991.98px) {
    #mainSearchForm .item-search-menu ul.nav.tab-bar > li > a {
        width: 72px;
        font-size: 12px;
        font-weight: 700;
        padding: 8px 6px !important;
    }

        #mainSearchForm .item-search-menu ul.nav.tab-bar > li > a i {
            font-size: 16px;
        }


    .horizontal-header {
        position: fixed !important;
        padding-bottom:20px !important;
    }
    .horizontalMenu > .horizontalMenu-list {
        padding-top: 70px;
    }

    .top-bar{
        display:none;
    }
    .tursab-strip{
        display:none;
    }
}



@media (max-width: 480px) {
    .item-search-tabs {
       margin-top:60px !important;
       padding:10px !important;
    }
}

@supports (-webkit-touch-callout: none) {
    /* Menü kapalıyken asla fixed olmasın (scroll geri gelsin) */
    body:not(.mnav-open) .horizontalMenucontainer {
        position: static !important;
        inset: auto !important;
        overflow: visible !important;
    }
}



#tourcategoriesv1 .cat-img-wrap {
    position: relative;
    display: inline-block;
}



    #tourcategoriesv1 .price-ribbon:after {
        content: "";
        position: absolute;
        right: 12px;
        bottom: -6px;
        border-width: 6px 6px 0 6px;
        border-style: solid;
        border-color: #ff407b transparent transparent transparent;
    }
#tourcategoriesv1 .price-ribbon-bottom { /*burası pembe banner*/
    display: inline-block;
    background: #ff407b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
    line-height: 1.1;
    max-width: 170px;
    white-space: normal;
}


#ratedlocationv1 .ratedloc-price-under {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}


#tourplacesv1 .place-tour-card {
    position: relative;
    overflow: hidden;
}

#tourplacesv1 .place-price-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    pointer-events: none;
    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 220px;
    white-space: normal;
}


/* Sadece bu component'e etki etsin */
#favourite-destination-v1 .item-card8-img {
    position: relative;
    overflow: hidden; /* hover/zoom taşmasın */
}

/* Sağ üst badge */
#favourite-destination-v1 .showcase-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10; /* overlay üstünde kalsın */
    pointer-events: none; /* hover/tıklamayı bozmasın */

    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(0,0,0,.60);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 220px;
    white-space: normal;
    text-align: right;
}

#explore-world-v1 .explore-img-wrap {
    position: relative;
    overflow: hidden;
}

/* Sağ üst badge */
#explore-world-v1 .explore-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    pointer-events: none;
    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(0,0,0,.60);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 220px;
    white-space: normal;
    text-align: right;
}

#our-tours-v1 .our-tours-price-under {
    color: #555;
    font-size: 12px;
    font-weight:bold !important;
    padding-left:10px;
}

#our-tours-v1 .tour-scroll.vertical-scroll {
    height: 450px !important;
}

@media (max-width: 576px) {
    #our-tours-v1 .tour-scroll.vertical-scroll {
        height: 400px !important;
    }
}


#adventuretourv1 .adventure-price-under {
    display: inline-block;
    margin-top: 6px;
    padding: 0px;
    border-radius: 10px;
   
    color: #555;
    font-weight: bold !important;
    font-size: 11px;
    line-height: 1.15;
    display:block;

}
#adventuretourv1 .owl-item {
    padding: 0 6px; /* sağ-sol boşluk */
}

#container12222 .topcity-price-under {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 10px;
   <
    color: #555;
    font-weight: bold !important;
    font-size: 11px;
    line-height: 1.15;
    max-width: 140px; /* kart dar, 2 satıra düşsün */
    white-space: normal;
    text-align: center;
}

#rated-location-v2 .ratedlocv2-price-under {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.08);
    color: #555;
    font-weight: bold !important;
    font-size: 11px;
    line-height: 1.15;
    max-width: 180px;
    white-space: normal;
}

#visited-location-v1 .visitedv1-price-under {
    margin-top: 6px;
    padding: 4px 8px;
    color: #555;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.15;
    max-width: 200px;
    white-space: normal;
    float:right;
}


/* Global loading overlay (BFCache + sayfa geçişleri için) */
html.is-loading::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2147483646;
}

html.is-loading::after {
    content: "Yükleniyor...";
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2147483647;
    padding: 14px 18px 14px 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
    color: #111;
    font: 700 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    letter-spacing: .2px;
    white-space: nowrap;
}

/* Spinner */
@keyframes globalSpin {
    to {
        transform: rotate(360deg);
    }
}

html.is-loading > body::before {
    content: "";
    position: fixed;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 26px;
    margin-left: -75px; /* yazı kutusunun soluna gelsin */
    margin-top: -13px;
    border-radius: 999px;
    border: 3px solid rgba(17,24,39,.18);
    border-top-color: rgba(17,24,39,.70);
    animation: globalSpin .7s linear infinite;
    z-index: 2147483647;
}

html.is-loading::after {
    content: "Lütfen bekleyin...";
}

html:lang(en).is-loading::after {
    content: "   Please wait...";
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3'lü */
    gap: 10px;
    max-width: 360px; /* sende vardı, kalsın */
    width: 100%;
}

.payment-item {
    display: flex;
    justify-content: left;
    padding: 0px;
}

    .payment-item img {
        height: 55px;
        width:70px;
        object-fit: contain;
        display: block;
    }

/* mobilde 2'li olsun istersen */
@media (max-width: 576px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}