/* ================================================================
   AVESTA TRAVEL — Tours Page CSS
================================================================ */

/* ──────────────── SEARCH WRAP — arka panel kaldırıldı ──────────────── */
.page-tours .th-search-wrap {
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

/* ──────────────── SEARCH FIELDS CONTAINER ──────────────── */
.page-tours .th-search-wrap .search-fields-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    padding: 8px 10px 8px 24px;
    box-shadow: 0 20px 60px rgba(6,12,24,.35), 0 4px 16px rgba(6,12,24,.18);
    flex-wrap: nowrap;
    gap: 0;
    transition: box-shadow .3s;
}

.page-tours .th-search-wrap .search-fields-container:hover {
    box-shadow: 0 24px 70px rgba(6,12,24,.42), 0 6px 20px rgba(6,12,24,.2);
}

/* ──────────────── FIELD BIRIMLERI ──────────────── */
.page-tours .th-search-wrap .search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 16px;
    border-radius: 50px;
    transition: background .2s;
    cursor: pointer;
    min-width: 0;
    position: relative;
}

.page-tours .th-search-wrap .search-field:hover {
    background: #f8fafc;
}

.page-tours .th-search-wrap .field-icon {
    color: var(--primary, #e85d04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-tours .th-search-wrap .field-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.page-tours .th-search-wrap .search-field-label {
    font-size: .7rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2px;
    white-space: nowrap;
}

.page-tours .th-search-wrap .search-field-input {
    width: 100%;
    padding: 0;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: .95rem;
    font-weight: 500;
    color: #475569;
    font-family: var(--font-body, inherit);
    cursor: pointer;
    -webkit-appearance: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-tours .th-search-wrap .search-field-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.page-tours .th-search-wrap .search-field-input:focus,
.page-tours .th-search-wrap .search-field-input:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Tarih inputundaki iç çerçeveyi/görünümü sıfırla */
.page-tours .th-search-wrap input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #475569;
    font-size: .95rem;
    font-weight: 500;
    font-family: var(--font-body, inherit);
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    /* Tarayıcının kendi iç çerçeve/gölgesini tamamen sil */
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.page-tours .th-search-wrap input[type="date"]:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.page-tours .th-search-wrap input[type="date"]::-webkit-datetime-edit {
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

.page-tours .th-search-wrap input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
    background: transparent;
}

.page-tours .th-search-wrap input[type="date"]::-webkit-datetime-edit-text,
.page-tours .th-search-wrap input[type="date"]::-webkit-datetime-edit-month-field,
.page-tours .th-search-wrap input[type="date"]::-webkit-datetime-edit-day-field,
.page-tours .th-search-wrap input[type="date"]::-webkit-datetime-edit-year-field {
    background: transparent;
    outline: none;
    border: none;
    padding: 0 1px;
}

.page-tours .th-search-wrap input[type="date"]::-webkit-inner-spin-button,
.page-tours .th-search-wrap input[type="date"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.page-tours .th-search-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    opacity: .4;
    padding: 0;
    margin: 0 0 0 4px;
}

/* ──────────────── DİVİDER ──────────────── */
.page-tours .th-search-wrap .field-divider {
    width: 1px;
    height: 38px;
    background: #e2e8f0;
    flex-shrink: 0;
    margin: 0 2px;
}

/* ──────────────── SEARCH BUTONU ──────────────── */
.page-tours .th-search-wrap .search-action {
    margin-left: 8px;
    flex-shrink: 0;
}

.page-tours .th-search-wrap .btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e85d04 0%, #c44e03 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: .97rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(232,93,4,.35);
    white-space: nowrap;
    transition: all .3s cubic-bezier(.2,1,.3,1);
    font-family: var(--font-body, inherit);
}

.page-tours .th-search-wrap .btn-search:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(232,93,4,.5);
}

/* ──────────────── GUEST DROPDOWN ──────────────── */
.page-tours .guest-trigger-text {
    font-size: .95rem;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    user-select: none;
}

.page-tours .guest-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 290px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 45px rgba(11,20,38,.18), inset 0 0 0 1px rgba(0,0,0,.05);
    padding: 18px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s cubic-bezier(.2,1,.3,1);
}

.page-tours .guest-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-tours .guest-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 26px;
    width: 13px;
    height: 13px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0,0,0,.06);
    border-left: 1px solid rgba(0,0,0,.06);
}

.page-tours .guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.page-tours .guest-row:last-child  { border-bottom: none; padding-bottom: 0; }
.page-tours .guest-row:first-child { padding-top: 0; }

.page-tours .guest-info     { display: flex; flex-direction: column; gap: 2px; }
.page-tours .guest-title    { font-size: .95rem; font-weight: 700; color: #1e293b; }
.page-tours .guest-desc     { font-size: .78rem; color: #94a3b8; }
.page-tours .guest-controls { display: flex; align-items: center; gap: 12px; }

.page-tours .guest-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all .18s;
    padding: 0;
    line-height: 1;
}

.page-tours .guest-btn:hover:not([style*="not-allowed"]) {
    border-color: #e85d04;
    color: #e85d04;
    transform: scale(1.1);
}

.page-tours .guest-count {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    min-width: 18px;
    text-align: center;
}

/* ──────────────── TUR AUTOCOMPLETE DROPDOWN ──────────────── */
.tsd-clear-btn {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    z-index: 3;
}

.tsd-clear-btn:hover { background: #fee2e2; color: #b91c1c; }

/* ──────────────── DROPDOWN — temiz kart tasarımı ──────────────── */
.tour-suggest-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    min-width: 360px;
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(15,23,42,.14),
        0 4px 16px rgba(15,23,42,.07),
        0 0 0 1px rgba(226,232,240,.9);
    z-index: 10060;
    overflow: hidden;
    /* açılış animasyonu */
    animation: tsdFadeIn .15s ease;
}

@keyframes tsdFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tsd-header {
    padding: 12px 18px 10px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #94a3b8;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
}

.tsd-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

.tsd-list li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.tsd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    /* button reset */
    background: transparent;
    width: calc(100% - 16px);
    text-align: left;
    font-family: var(--font-body, inherit);
    font-size: inherit;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    transition: background .12s, border-color .12s;
}

.tsd-item:hover,
.tsd-item.active {
    background: #fff8f3;
    border-color: rgba(232,93,4,.12);
}

.tsd-thumb {
    width: 48px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
    border: 1px solid #f1f5f9;
}

.tsd-thumb-empty {
    width: 48px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #cbd5e1;
}

.tsd-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tsd-title {
    font-size: .88rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.tsd-meta {
    font-size: .73rem;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tsd-price {
    font-size: .82rem;
    font-weight: 800;
    color: #e85d04;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: center;
}

.tsd-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 16px;
    color: #cbd5e1;
    font-size: .83rem;
    font-weight: 600;
}

.tsd-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    color: #94a3b8;
    font-size: .83rem;
    font-weight: 500;
}

.tsd-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #e2e8f0;
    border-top-color: #e85d04;
    border-radius: 50%;
    animation: tsdSpin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes tsdSpin { to { transform: rotate(360deg); } }

/* ──────────────── GLOBAL DATEPİCKER OVERRIDE (search içinde) ──────────────── */
/* .avp-trigger = global datepicker'ın oluşturduğu görünür buton */
.page-tours .th-search-wrap .avp-wrapper {
    width: 100%;
}

.page-tours .th-search-wrap .avp-trigger {
    width: 100%;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    font-size: .95rem !important;
    font-weight: 500 !important;
    color: #475569 !important;
    font-family: var(--font-body, inherit) !important;
    outline: none !important;
    cursor: pointer;
    text-align: left;
    height: auto !important;
    line-height: normal !important;
    transition: none !important;
}

.page-tours .th-search-wrap .avp-trigger:hover,
.page-tours .th-search-wrap .avp-trigger:focus,
.page-tours .th-search-wrap .avp-trigger.open,
.page-tours .th-search-wrap .avp-trigger.has-value {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    outline: none !important;
}

.page-tours .th-search-wrap .avp-trigger.placeholder-text {
    color: #94a3b8 !important;
}

/* Datepicker'ın kendi takvim ikonunu gizle — field-icon zaten var */
.page-tours .th-search-wrap .avp-icon {
    display: none !important;
}

/* ──────────────── MOBİL ──────────────── */
@media (max-width: 992px) {
    .page-tours .th-search-wrap .search-fields-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 14px;
        align-items: stretch;
    }

    .page-tours .th-search-wrap .field-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }

    .page-tours .th-search-wrap .search-field {
        width: 100%;
        border-radius: 14px;
        padding: 11px 14px;
    }

    .page-tours .th-search-wrap .search-action {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }

    .page-tours .th-search-wrap .btn-search {
        width: 100%;
        padding: 15px;
    }

    .page-tours .guest-dropdown {
        width: 270px;
    }

    .tour-suggest-dropdown {
        left: 0;
        width: calc(100vw - 32px);
    }
}

/* ──────────────── TAG SLIDER ──────────────── */
.ttag-section { background: #f4f6fb; }

.ttag-slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ttag-viewport {
    flex: 1;
    overflow: hidden;
}

.ttag-track {
    display: flex;
    gap: 18px;
    transition: transform .48s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

/* ─ Kart ─ */
.ttag-card {
    flex: 0 0 calc(20% - 15px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(11,20,38,.13), 0 2px 8px rgba(11,20,38,.07);
    transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s;
}

.ttag-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(11,20,38,.2), 0 6px 16px rgba(11,20,38,.1);
}

.ttag-card-bg {
    position: absolute;
    inset: 0;
}

.ttag-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.ttag-card:hover .ttag-card-bg img {
    transform: scale(1.08);
}

.ttag-card-bg-placeholder {
    position: absolute;
    inset: 0;
}

.ttag-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,12,24,.85) 0%, rgba(6,12,24,.35) 55%, rgba(6,12,24,.08) 100%);
    transition: background .3s;
}

.ttag-card:hover .ttag-card-overlay {
    background: linear-gradient(to top, rgba(6,12,24,.92) 0%, rgba(6,12,24,.48) 60%, rgba(6,12,24,.12) 100%);
}

.ttag-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ttag-card-color-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-bottom: 2px;
}

.ttag-card-name {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(.78rem, 1.1vw, .95rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: .04em;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

.ttag-card-count {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
}

/* ─ Ok Butonları ─ */
.ttag-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid #d1dae8;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(11,20,38,.1);
    transition: all .22s;
}

.ttag-arrow:hover:not(:disabled) {
    background: #e85d04;
    color: #fff;
    border-color: #e85d04;
    box-shadow: 0 6px 20px rgba(232,93,4,.32);
    transform: scale(1.08);
}

.ttag-arrow:disabled {
    opacity: .3;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 1100px) {
    .ttag-card { flex: 0 0 calc(25% - 14px); }
}

@media (max-width: 768px) {
    .ttag-card { flex: 0 0 calc(50% - 9px); }
    .ttag-arrow { display: none; }
}

/* ──────────────── DESTİNASYONLAR SLIDER ──────────────── */
.tdest-section { background: #fff; }

/* Başlık satırı */
.tdest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tdest-head-left { flex: 1; min-width: 0; }

.tdest-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #0b1426;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .18s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(11,20,38,.18);
}

.tdest-all-btn:hover {
    background: #e85d04;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,93,4,.28);
}

.tdest-all-btn svg { transition: transform .2s; }
.tdest-all-btn:hover svg { transform: translateX(3px); }

.tdest-slider-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.tdest-viewport {
    overflow: hidden;
    width: 100%;
}

.tdest-track {
    display: flex;
    gap: 16px;
    transition: transform .36s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}

.tdest-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(11,20,38,.08);
    flex-shrink: 0;
}

.tdest-arrow:hover:not(:disabled) {
    background: #0b1426;
    border-color: #0b1426;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 10px 26px rgba(11,20,38,.2);
}

.tdest-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tdest-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ─ Kart ─ */
.tdest-card {
    flex: 0 0 calc((100% - 48px) / 4);
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 6px 24px rgba(11,20,38,.12), 0 2px 8px rgba(11,20,38,.06);
    transition: transform .32s cubic-bezier(.25,.46,.45,.94), box-shadow .32s;
    background: #1a2d50;
}

.tdest-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 50px rgba(11,20,38,.18), 0 6px 16px rgba(11,20,38,.1);
}

/* Görsel */
.tdest-card-img {
    position: absolute;
    inset: 0;
}

.tdest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.tdest-card:hover .tdest-card-img img {
    transform: scale(1.07);
}

.tdest-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1e38, #1a3260);
    color: rgba(255,255,255,.2);
}

.tdest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,12,24,.88) 0%,
        rgba(6,12,24,.32) 50%,
        rgba(6,12,24,.05) 100%
    );
    transition: background .3s;
}

.tdest-card:hover .tdest-card-overlay {
    background: linear-gradient(
        to top,
        rgba(6,12,24,.94) 0%,
        rgba(6,12,24,.44) 60%,
        rgba(6,12,24,.1) 100%
    );
}

/* İçerik */
.tdest-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(6px);
    transition: transform .3s;
}

.tdest-card:hover .tdest-card-body {
    transform: translateY(0);
}

.tdest-card-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(232,93,4,.22);
    border: 1px solid rgba(232,93,4,.35);
    border-radius: 999px;
    padding: 3px 9px;
    width: fit-content;
    margin-bottom: 4px;
}

.tdest-card-name {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(.95rem, 1.2vw, 1.15rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.tdest-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.0);
    transition: color .25s;
    margin-top: 2px;
}

.tdest-card:hover .tdest-card-cta {
    color: rgba(255,255,255,.85);
}

.tdest-card-cta svg {
    transform: translateX(-4px);
    transition: transform .25s;
}

.tdest-card:hover .tdest-card-cta svg {
    transform: translateX(0);
}

/* Fazla kayıt butonu */
.tdest-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.tdest-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    background: transparent;
    color: #0b1426;
    border: 2px solid #d1dae8;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s;
}

.tdest-more-btn:hover {
    background: #0b1426;
    color: #fff;
    border-color: #0b1426;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,20,38,.18);
}

.tdest-more-btn svg { transition: transform .2s; }
.tdest-more-btn:hover svg { transform: translateX(4px); }

/* Responsive */
@media (max-width: 1100px) {
    .tdest-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 768px) {
    .tdest-head { flex-direction: column; align-items: flex-start; }
    .tdest-all-btn { align-self: flex-start; }
}

@media (max-width: 700px) {
    .tdest-card {
        flex-basis: 100%;
        aspect-ratio: 16 / 10;
    }
    .tdest-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ──────────────── EN POPULER DIDIM TURLARI ──────────────── */
.tpd-section { background: #f8fafc; }

.tpd-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #0b1426;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .18s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(11,20,38,.18);
}

.tpd-all-btn:hover {
    background: #e85d04;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,93,4,.28);
}

.tpd-all-btn svg { transition: transform .2s; }
.tpd-all-btn:hover svg { transform: translateX(3px); }

.tpd-slider-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.tpd-viewport {
    overflow: hidden;
    width: 100%;
}

.tpd-track {
    display: flex;
    gap: 16px;
    transition: transform .36s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}

.tpd-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(11,20,38,.08);
    flex-shrink: 0;
}

.tpd-arrow:hover:not(:disabled) {
    background: #0b1426;
    border-color: #0b1426;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 10px 26px rgba(11,20,38,.2);
}

.tpd-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tpd-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tpd-card {
    flex: 0 0 calc((100% - 48px) / 4);
    height: clamp(260px, 22vw, 330px);
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(11,20,38,.12), 0 2px 8px rgba(11,20,38,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    background: #13213d;
}

.tpd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(11,20,38,.18), 0 6px 16px rgba(11,20,38,.1);
}

.tpd-card-img {
    position: absolute;
    inset: 0;
}

.tpd-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .45s ease;
}

.tpd-card:hover .tpd-card-img img {
    transform: scale(1.06);
}

.tpd-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1e38, #1a3260);
    color: rgba(255,255,255,.2);
}

.tpd-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,12,24,.88) 0%, rgba(6,12,24,.4) 52%, rgba(6,12,24,.08) 100%);
}

.tpd-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(2,6,14,.86) 0%, rgba(2,6,14,.62) 46%, rgba(2,6,14,0) 100%);
}

.tpd-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.tpd-day,
.tpd-rating {
    display: inline-flex;
    align-items: center;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,.88);
    background: rgba(2,6,14,.42);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    padding: 3px 8px;
    backdrop-filter: blur(3px);
}

.tpd-title {
    margin: 0;
    color: #fff;
    font-size: clamp(.92rem, 1.08vw, 1.08rem);
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
    min-height: 2.45em;
}

.tpd-footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tpd-price {
    color: #fb923c;
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: .01em;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.tpd-cta {
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(255,255,255,.08);
}

@media (max-width: 1100px) {
    .tpd-card {
        flex-basis: calc((100% - 16px) / 2);
        height: clamp(250px, 34vw, 320px);
    }
}

@media (max-width: 768px) {
    .tpd-all-btn { align-self: flex-start; }
}

@media (max-width: 700px) {
    .tpd-card {
        flex-basis: 100%;
        height: clamp(240px, 56vw, 320px);
    }
    .tpd-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ================================================================
   CTA CONTACT (HOME.PHP ILE AYNI DUZEN)
================================================================ */
.cta-section {
    padding: var(--section-gap) 0;
}

.cta-premium-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 30px 60px rgba(11, 20, 38, 0.2);
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 10s ease;
}

.cta-premium-wrapper:hover .cta-bg-image {
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 20, 38, 0.98) 0%, rgba(11, 20, 38, 0.85) 50%, rgba(11, 20, 38, 0.3) 100%);
    z-index: 2;
}

.cta-content-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    padding: 80px 64px;
    align-items: center;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.glass-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.premium-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid transparent;
}

.premium-contact-btn:last-child {
    margin-bottom: 0;
}

.premium-contact-btn.phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.3);
}

.premium-contact-btn.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 93, 4, 0.45);
}

.premium-contact-btn.whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.premium-contact-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.btn-texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 4px;
}

.premium-contact-btn.phone .b-label {
    color: rgba(255, 255, 255, 0.9);
}

.b-value {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 992px) {
    .cta-content-grid {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        gap: 40px;
    }

    .cta-overlay {
        background: linear-gradient(180deg, rgba(11, 20, 38, 0.95) 0%, rgba(11, 20, 38, 0.85) 100%);
    }
}

@media (max-width: 640px) {
    .cta-content-grid {
        padding: 40px 24px;
    }

    .glass-card {
        padding: 24px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
}
