/* ╔══════════════════════════════════════════════════════════╗
   ║  TOUR DETAIL PAGE — Premium Stylesheet v2                 ║
   ║  Inherits base design system from style.css               ║
   ║  Enhanced: larger type, richer spacing, pro polish        ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── BREADCRUMB ── */
.td-breadcrumb {
    padding: .85rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--surface-2);
}

.td-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text-4);
}

.td-breadcrumb a {
    color: var(--text-3);
    transition: color .2s;
}

.td-breadcrumb a:hover {
    color: var(--teal);
}

.td-breadcrumb i.fa-chevron-right {
    color: var(--surface-3);
    font-size: .5rem;
}

.td-breadcrumb span {
    color: var(--text);
    font-weight: 600;
}

/* ── GALLERY HERO ── */
.td-gallery {
    padding: 1.5rem 0 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: .5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 480px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    overflow: hidden;
}

.gallery-main img,
.gallery-main video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.gallery-main:hover img,
.gallery-main:hover video {
    transform: scale(1.04);
}

.gallery-badge {
    padding: .5rem 1.1rem;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255, 255, 255, .12);
    transition: all .3s;
    cursor: pointer;
}

.gallery-badge:hover {
    background: rgba(13, 148, 136, .8);
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .5rem;
    height: 100%;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 0;
}

.gallery-thumb:nth-child(2) {
    border-radius: 0 var(--radius-xl) 0 0;
}

.gallery-thumb:nth-child(4) {
    border-radius: 0 0 var(--radius-xl) 0;
}

.gallery-thumb img,
.gallery-thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.gallery-thumb:hover img,
.gallery-thumb:hover video {
    transform: scale(1.1);
}

.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    transition: background .3s;
}

.gallery-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: rgba(0, 0, 0, .4);
    transition: background .3s;
    z-index: 1;
}

.gallery-play-btn i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .9);
    color: var(--teal);
    border-radius: 50%;
    font-size: 1.1rem;
    padding-left: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    transition: transform .3s, background .3s;
}

.gallery-play-btn span {
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.gallery-thumb:hover .gallery-play-btn {
    background: rgba(0, 0, 0, .55);
}

.gallery-thumb:hover .gallery-play-btn i {
    transform: scale(1.15);
    background: #fff;
}

/* Gallery badges container */
.gallery-badges {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    gap: .5rem;
    z-index: 2;
}

/* ── Tour Gallery Lightbox ── */
.tour-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.tour-lightbox.active {
    display: flex;
    opacity: 1;
}

.tour-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .3s;
    z-index: 3;
}

.tour-lightbox-close:hover {
    background: rgba(255, 255, 255, .25);
}

.tour-lightbox-counter {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    font-weight: 500;
    z-index: 3;
}

.tour-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.tour-lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    outline: none;
}

.tour-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .3s;
    z-index: 3;
}

.tour-lightbox-nav:hover {
    background: rgba(255, 255, 255, .25);
}

.tour-lightbox-prev {
    left: 1.5rem;
}

.tour-lightbox-next {
    right: 1.5rem;
}

.gallery-thumb-overlay i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, .85);
    border-radius: 50%;
    font-size: 1rem;
    transition: transform .3s;
}

.gallery-thumb:hover .gallery-thumb-overlay {
    background: rgba(13, 148, 136, .75);
}

.gallery-thumb:hover .gallery-thumb-overlay i {
    transform: scale(1.15);
}

/* ── 2-COLUMN LAYOUT ── */
.td-main {
    padding: 3rem 0 0;
    background: var(--bg);
}

.td-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
}

/* ── TITLE BLOCK ── */
.td-title-block {
    margin-bottom: 2rem;
}

.td-title-top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .85rem;
    flex-wrap: wrap;
}

.td-tag {
    display: inline-block;
    padding: .3rem .85rem;
    background: var(--tag-bg, var(--teal-wash));
    color: var(--tag-fg, var(--teal));
    font-size: .75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 1px solid rgba(0, 0, 0, .04);
}

/* Rozet + yapışık kısa not (özelliğin açıklaması varsa) */
.td-tag-group {
    display: inline-flex;
    align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .04);
    vertical-align: middle;
}

.td-tag-group .td-tag {
    border-radius: 0;
    border: 0;
}

.td-tag-note {
    display: inline-flex;
    align-items: center;
    padding: .3rem .7rem;
    background: #ffffff;
    color: var(--tag-fg, var(--text));
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2px;
    text-transform: none;
    white-space: nowrap;
    border-left: 1px solid rgba(0, 0, 0, .05);
}

.td-rating {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}

.td-rating .stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: .95rem;
}

.td-review-count {
    font-weight: 400;
    color: var(--text-4);
    font-size: .82rem;
}

.td-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: .6rem;
}

.td-subtitle {
    font-size: 1rem;
    color: var(--text-3);
    line-height: 1.8;
    max-width: 640px;
}

/* ── ACTIONS BAR ── */
.td-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--surface-2);
    flex-wrap: wrap;
    gap: .75rem;
}

.td-social-proof {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.td-traveler-avatars {
    display: flex;
    align-items: center;
}

.td-traveler-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.td-traveler-avatars img:first-child {
    margin-left: 0;
}

.td-avatar-more {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    background: var(--teal);
    color: var(--white);
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(13, 148, 136, .2);
}

.td-proof-text {
    font-size: .82rem;
    color: var(--text-3);
    font-weight: 500;
}

.td-action-btns {
    display: flex;
    gap: .5rem;
}

.td-action-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .85rem;
    background: var(--bg);
    border: 1px solid var(--surface-3);
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-3);
    cursor: pointer;
    transition: all .25s;
}

.td-action-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-wash);
    transform: translateY(-1px);
}

.td-action-btn i {
    font-size: .85rem;
}

/* ── REVIEWS ── */
.td-reviews {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.td-review {
    padding: 1.25rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    transition: all .3s;
}

.td-review:hover {
    border-color: var(--teal-soft);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.td-review-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}

.td-review-header img,
.td-review-header .td-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--surface-2);
    flex: 0 0 42px;
}

.td-review-header .td-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-wash);
    color: var(--teal);
    font-weight: 600;
    font-size: .95rem;
}

.td-review-header .td-review-info {
    flex: 1;
    min-width: 0;
}

.td-review-header strong {
    display: block;
    font-size: .9rem;
    color: var(--text);
}

.td-review-header .td-review-info > span {
    font-size: .72rem;
    color: var(--text-4);
}

.td-review-stars {
    color: #f59e0b;
    font-size: .88rem;
    letter-spacing: 1px;
}

.td-review p {
    font-size: .88rem;
    color: var(--text-3);
    line-height: 1.75;
    font-style: italic;
}

.td-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.25rem;
    padding: .65rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--surface-3);
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--teal);
    transition: all .3s;
}

.td-all-reviews-btn:hover {
    background: var(--teal-wash);
    border-color: var(--teal);
    transform: translateX(4px);
}

.td-all-reviews-btn i {
    font-size: .75rem;
    transition: transform .3s;
}

.td-all-reviews-btn:hover i {
    transform: translateX(4px);
}

/* ── QUICK INFO STRIP ── */
.td-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-bottom: 2rem;
}

.td-qi-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1.15rem 1rem;
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-md);
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
}

.td-qi-item:hover {
    border-color: var(--teal-soft);
    box-shadow: 0 8px 24px rgba(13, 148, 136, .08);
    transform: translateY(-2px);
}

.td-qi-item>i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-wash);
    color: var(--teal);
    border-radius: 10px;
    font-size: .95rem;
    flex-shrink: 0;
    border: 1px solid rgba(13, 148, 136, .08);
}

.qi-label {
    display: block;
    font-size: .7rem;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .15rem;
}

.qi-value {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
}

/* ── SECTION CARDS ── */
.td-section-card {
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow .3s;
}

.td-section-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.td-section-heading {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.1rem;
    border-bottom: 2px solid var(--surface-2);
}

.td-section-heading i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-wash);
    color: var(--teal);
    border-radius: 8px;
    font-size: .95rem;
}

/* ── HIGHLIGHTS ── */
.td-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.td-highlights li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.6;
    padding: .5rem .75rem;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all .2s;
}

.td-highlights li:hover {
    border-color: var(--teal-soft);
    background: var(--teal-wash);
}

.td-highlights li i {
    color: var(--teal);
    font-size: .75rem;
    margin-top: .3rem;
    flex-shrink: 0;
}

/* ── ITINERARY TIMELINE ── */
.td-timeline {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: flex;
    gap: 1.25rem;
}

.tl-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.tl-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 38px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    background: var(--surface-1);
    color: var(--text-3);
    border: 2px solid var(--surface-2);
    transition: all .3s;
    flex-shrink: 0;
    white-space: nowrap;
}

.tl-item.active .tl-dot {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    box-shadow: 0 4px 14px rgba(13, 148, 136, .3);
}

.tl-line {
    width: 2px;
    flex: 1;
    background: var(--surface-2);
    min-height: 20px;
}

.tl-content {
    flex: 1;
    min-width: 0;
    margin-bottom: 1rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-lg);
    background: var(--white);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.tl-item.active .tl-content {
    border-color: rgba(13, 148, 136, .2);
    box-shadow: 0 2px 12px rgba(13, 148, 136, .06);
    background: linear-gradient(180deg, #e8faf8 0%, #f5fefd 100%);
}

.tl-item:last-child .tl-content {
    margin-bottom: 0;
}

.tl-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.tl-header h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.tl-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--surface-2);
    color: var(--text-4);
    font-size: .75rem;
    flex-shrink: 0;
    transition: all .3s;
}

.tl-item.active .tl-toggle {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
    transform: rotate(45deg);
}

.tl-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.22, 1, .36, 1), padding .3s;
    padding: 0 1.25rem;
}

.tl-item.active .tl-body {
    max-height: 2000px;
    padding: 0 1.25rem 1.25rem;
}

.tl-desc {
    font-size: .9rem;
    color: var(--text-3);
    line-height: 1.8;
    padding-top: .25rem;
}

.tl-desc p {
    margin-bottom: .75rem;
}

.tl-desc ul,
.tl-desc ol {
    margin-bottom: .75rem;
    padding-left: 1.25rem;
}

.tl-desc li {
    margin-bottom: .25rem;
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding-top: .5rem;
}

.tl-tags span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .8rem;
    background: var(--surface-1);
    border: 1px solid var(--surface-2);
    border-radius: 8px;
    font-size: .78rem;
    color: var(--text-3);
    font-weight: 500;
}

.tl-tags span i {
    color: var(--teal);
    font-size: .7rem;
}

/* ── INCLUDES / EXCLUDES ── */
.td-incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.td-includes .td-section-heading i {
    background: var(--teal-wash);
    color: var(--teal);
}

.td-excludes .td-section-heading i {
    background: #fef2f2;
    color: #ef4444;
}

.td-includes ul,
.td-excludes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.td-includes li,
.td-excludes li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.6;
    padding: .4rem 0;
    border-bottom: 1px solid var(--surface-2);
}

.td-includes li:last-child,
.td-excludes li:last-child {
    border-bottom: none;
}

.td-includes li i {
    color: var(--teal);
    font-size: .75rem;
    margin-top: .25rem;
    flex-shrink: 0;
}

.td-excludes li i {
    color: #ef4444;
    font-size: .75rem;
    margin-top: .25rem;
    flex-shrink: 0;
}

/* ── IMPORTANT NOTES ── */
.td-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.td-note {
    display: flex;
    gap: .9rem;
    padding: 1.25rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-2);
    transition: all .3s;
}

.td-note:hover {
    border-color: var(--gold-soft);
    box-shadow: 0 4px 12px rgba(217, 119, 6, .06);
}

.td-note>i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3c7;
    color: var(--gold);
    border-radius: 10px;
    font-size: .9rem;
    flex-shrink: 0;
}

.td-note strong {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .25rem;
}

.td-note p {
    font-size: .85rem;
    color: var(--text-3);
    line-height: 1.7;
}


/* ════════════════════════════════════════
   SIDEBAR
   ════════════════════════════════════════ */
.td-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Price Card */
.td-price-card {
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.td-pc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, var(--teal-wash) 0%, rgba(240, 253, 250, .5) 100%);
    border-bottom: 1px solid rgba(13, 148, 136, .1);
}

.td-pc-dates {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text-2);
}

.td-pc-dates i {
    color: var(--teal);
}

.td-pc-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dot-live {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
    box-shadow: 0 0 8px rgba(13, 148, 136, .4);
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.85);
    }
}

.td-pc-price-area {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.td-pc-price-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--surface-3), transparent);
}

.td-pc-label {
    display: inline-block;
    padding: .2rem .75rem;
    background: var(--teal-wash);
    color: var(--teal);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .6rem;
    border: 1px solid rgba(13, 148, 136, .1);
}

.td-pc-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .35rem;
}

.td-pc-old {
    font-size: 1rem;
    color: var(--text-4);
    text-decoration: line-through;
}

.td-pc-current {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -.5px;
}

.td-pc-currency {
    font-size: 1.1rem;
    color: var(--text-4);
    font-weight: 600;
}

.td-pc-sub {
    font-size: .78rem;
    color: var(--text-4);
    font-style: italic;
}

.td-pc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: 0 1.5rem;
    margin-bottom: 1.25rem;
}

.td-pc-detail {
    padding: .6rem;
    background: var(--bg);
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--surface-2);
}

.td-pc-detail span {
    font-size: .78rem;
    color: var(--text-3);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
}

.td-pc-detail i {
    color: var(--teal);
    font-size: .75rem;
}

.td-pc-occ {
    padding: 0 1.5rem 1.5rem;
}

.td-pc-occ-bar {
    width: 100%;
    height: 8px;
    background: var(--surface-2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: .5rem;
}

.td-pc-occ-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--teal-vivid), var(--teal-glow));
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(.22, 1, .36, 1);
    position: relative;
}

.td-pc-occ-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 24px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4));
    border-radius: 0 4px 4px 0;
}

.td-pc-occ>span {
    font-size: .78rem;
    color: var(--text-4);
}

.td-pc-occ>span strong {
    color: #ef4444;
    font-weight: 700;
}

.td-pc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: calc(100% - 3rem);
    margin: 0 auto 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-vivid));
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 6px 20px rgba(13, 148, 136, .3);
    position: relative;
    overflow: hidden;
}

.td-pc-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: left .6s;
}

.td-pc-btn:hover::before {
    left: 100%;
}

.td-pc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, .4);
}

.td-pc-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: calc(100% - 3rem);
    margin: 0 auto 1.5rem;
    padding: .8rem;
    background: var(--bg);
    border: 1px solid var(--surface-3);
    color: var(--text-2);
    border-radius: var(--radius-md);
    font-size: .88rem;
    font-weight: 600;
    transition: all .3s;
}

.td-pc-phone:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-wash);
}

/* Dates Card */
.td-dates-card {
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.td-dates-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.1rem;
    padding-bottom: .85rem;
    border-bottom: 2px solid var(--surface-2);
}

.td-dates-card h3 i {
    color: var(--teal);
}

.td-dates-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.td-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    transition: all .3s;
    cursor: pointer;
}

.td-date-row:hover {
    border-color: var(--teal);
    background: var(--teal-wash);
    transform: translateX(4px);
}

.td-date-row strong {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .15rem;
}

.td-date-row span {
    font-size: .72rem;
    color: var(--text-4);
    font-weight: 500;
}

.td-date-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}

/* Consultant Card */
.td-consultant-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    transition: all .3s;
}

.td-consultant-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.td-consultant-card>img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--teal-soft);
    box-shadow: 0 4px 12px rgba(13, 148, 136, .1);
}

.td-cons-label {
    display: block;
    font-size: .68rem;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .1rem;
}

.td-consultant-card strong {
    display: block;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: .3rem;
}

.td-cons-wa {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
    color: #25d366;
    padding: .3rem .7rem;
    background: rgba(37, 211, 102, .06);
    border-radius: 6px;
    transition: all .2s;
}

.td-cons-wa:hover {
    background: rgba(37, 211, 102, .12);
    transform: translateX(2px);
}


/* ════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════ */
.td-stats-bar {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--dark-hero) 0%, var(--dark-2) 100%);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.td-stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, .15) 0%, transparent 70%);
    border-radius: 50%;
}

.td-stats-bar::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 148, 136, .1) 0%, transparent 70%);
    border-radius: 50%;
}

.td-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.td-stat {
    padding: 1.5rem 1rem;
}

.td-stat i {
    font-size: 1.8rem;
    color: var(--teal-glow);
    margin-bottom: .75rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(45, 212, 191, .3));
}

.td-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .2rem;
}

.td-stat-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.td-faq-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.td-faq-section .faq-q span {
    font-size: .95rem;
}

.td-faq-section .faq-a p {
    font-size: .9rem;
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .td-layout {
        grid-template-columns: 1fr;
    }

    .td-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .td-price-card {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-main {
        height: 360px;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .gallery-side {
        grid-template-columns: repeat(4, 1fr);
        height: auto;
        aspect-ratio: 4 / 1;
    }

    .gallery-thumb:nth-child(2) {
        border-radius: 0;
    }

    .gallery-thumb:nth-child(3) {
        border-radius: 0;
    }

    .gallery-thumb:nth-child(4) {
        border-radius: 0 0 var(--radius-xl) 0;
    }

    .gallery-thumb:first-child {
        border-radius: 0 0 0 var(--radius-xl);
    }

    .td-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .td-highlights {
        grid-template-columns: 1fr;
    }

    .td-notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .td-breadcrumb {
        padding: .7rem 0;
    }
    .td-breadcrumb .container {
        font-size: .78rem;
        gap: .4rem;
        flex-wrap: wrap;
    }
    .td-breadcrumb span {
        flex-basis: 100%;
        line-height: 1.35;
    }

    .td-gallery {
        padding: 1rem 0 0;
    }

    .gallery-main {
        height: 320px;
    }

    .gallery-side {
        grid-template-columns: repeat(2, 1fr);
        aspect-ratio: 2 / 1;
    }

    .gallery-thumb:nth-child(2) {
        border-radius: 0;
    }

    .gallery-thumb:nth-child(4) {
        border-radius: 0 0 var(--radius-xl) 0;
    }

    .gallery-thumb:first-child {
        border-radius: 0;
    }

    .gallery-thumb:nth-child(3) {
        border-radius: 0 0 0 var(--radius-xl);
    }

    .gallery-badges {
        bottom: .85rem;
        left: .85rem;
        gap: .4rem;
    }
    .gallery-badge {
        padding: .4rem .85rem;
        font-size: .75rem;
    }

    .td-main {
        padding: 1.75rem 0 0;
    }

    .td-title-block {
        margin-bottom: 1.25rem;
    }
    .td-title-top {
        gap: .5rem;
        margin-bottom: .6rem;
    }
    .td-tag {
        padding: .25rem .65rem;
        font-size: .68rem;
    }

    .td-quick-info {
        grid-template-columns: 1fr 1fr;
    }

    .td-incl-grid {
        grid-template-columns: 1fr;
    }

    .td-sidebar {
        grid-template-columns: 1fr;
    }

    .td-price-card {
        grid-column: span 1;
    }

    .td-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .td-stat-num {
        font-size: 1.8rem;
    }

    .td-title {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .td-section-heading {
        font-size: 1.1rem;
    }

    .it-day-header {
        padding: 1rem;
    }

    .it-day-body p,
    .it-day-tags {
        padding-left: calc(44px + .75rem);
    }

    /* ── LIGHTBOX MOBİL ── */
    .tour-lightbox-content {
        max-width: 100vw;
        max-height: 72vh;
        padding: 0 .5rem;
    }
    .tour-lightbox-content img,
    .tour-lightbox-content video {
        max-width: 95vw;
        max-height: 70vh;
    }
    .tour-lightbox-nav {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, .7);
        border: 1px solid rgba(255, 255, 255, .25);
        top: auto;
        bottom: 1.25rem;
        transform: none;
        font-size: 1rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    }
    .tour-lightbox-prev {
        left: 1rem;
    }
    .tour-lightbox-next {
        right: 1rem;
    }
    .tour-lightbox-close {
        width: 40px;
        height: 40px;
        top: .85rem;
        right: .85rem;
        font-size: 1.05rem;
    }
    .tour-lightbox-counter {
        top: 1.2rem;
        font-size: .78rem;
        padding: .25rem .7rem;
        background: rgba(0, 0, 0, .4);
        border-radius: 999px;
    }
}

@media (max-width: 480px) {
    .td-breadcrumb .container {
        font-size: .72rem;
    }

    .td-gallery {
        padding: .75rem 0 0;
    }

    .td-gallery .container {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .gallery-grid {
        gap: 0;
    }

    .td-quick-info {
        grid-template-columns: 1fr;
    }

    .gallery-side {
        display: none;
    }

    .gallery-main {
        height: 240px;
        border-radius: var(--radius-lg);
    }

    .gallery-badges {
        bottom: .7rem;
        left: .7rem;
    }
    .gallery-badge {
        padding: .35rem .75rem;
        font-size: .7rem;
    }

    .it-day-body p,
    .it-day-tags {
        padding-left: 0;
    }

    .td-notes {
        grid-template-columns: 1fr;
    }

    .td-section-card {
        padding: 1.25rem;
    }

    .td-stat-label {
        font-size: .72rem;
        letter-spacing: 1px;
    }

    .td-title {
        font-size: 1.35rem;
    }

    /* Lightbox — çok küçük ekran */
    .tour-lightbox-nav {
        width: 42px;
        height: 42px;
    }
    .tour-lightbox-prev {
        left: .65rem;
    }
    .tour-lightbox-next {
        right: .65rem;
    }
    .tour-lightbox-content img,
    .tour-lightbox-content video {
        max-width: 96vw;
        max-height: 68vh;
    }
}


/* ══════════════════════════════════════
   BAŞVURU MODAL
   ══════════════════════════════════════ */
.bm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
    padding: 1rem;
}

.bm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bm-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
    position: relative;
    transform: translateY(20px) scale(.97);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.bm-overlay.active .bm-card {
    transform: translateY(0) scale(1);
}

.bm-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--surface-1);
    color: var(--text-3);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    z-index: 2;
}

.bm-close:hover {
    background: var(--text);
    color: #fff;
}

/* ── Header ── */
.bm-header {
    padding: 2rem 2rem 0;
}

.bm-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}

.bm-header p {
    font-size: .85rem;
    color: var(--text-4);
    line-height: 1.5;
}

/* ── Steps Indicator ── */
.bm-steps {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 0;
}

.bm-step {
    display: flex;
    align-items: center;
    gap: .5rem;
    opacity: .45;
    transition: opacity .3s;
}

.bm-step.active {
    opacity: 1;
}

.bm-step.done {
    opacity: .7;
}

.bm-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text-3);
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}

.bm-step.active .bm-step-num {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 3px 10px rgba(13, 148, 136, .3);
}

.bm-step.done .bm-step-num {
    background: var(--teal);
    color: #fff;
}

.bm-step-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
}

.bm-step.active .bm-step-label {
    color: var(--text);
}

.bm-step-line {
    flex: 1;
    height: 2px;
    background: var(--surface-2);
    margin: 0 .6rem;
    min-width: 20px;
}

/* ── Body / Content ── */
.bm-body {
    padding: 0 2rem 2rem;
}

.bm-step-content {
    display: none;
}

.bm-step-content.active {
    display: block;
}

.bm-body-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

/* ── Date Grid ── */
.bm-dates-grid {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.bm-date-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
}

.bm-date-option:hover {
    border-color: var(--teal-soft);
    background: var(--teal-wash);
}

.bm-date-option.checked,
.bm-date-option:has(input:checked) {
    border-color: var(--teal);
    background: var(--teal-wash);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .08);
}

.bm-date-option input {
    display: none;
}

.bm-date-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--surface-3, #ccc);
    flex-shrink: 0;
    position: relative;
    transition: border-color .2s;
}

.bm-date-option:has(input:checked) .bm-date-radio,
.bm-date-option.checked .bm-date-radio {
    border-color: var(--teal);
}

.bm-date-option:has(input:checked) .bm-date-radio::after,
.bm-date-option.checked .bm-date-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--teal);
}

.bm-date-text {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

/* Tarih kartında fiyat bloğu (sağda) */
.bm-date-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    line-height: 1.15;
    padding-left: .5rem;
    border-left: 1px dashed var(--surface-2);
}

.bm-date-price-label {
    font-size: .65rem;
    color: var(--text-4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.bm-date-price-val {
    font-size: .95rem;
    font-weight: 700;
    color: var(--teal);
    margin-top: .1rem;
}

.bm-date-option:has(input:checked) .bm-date-price,
.bm-date-option.checked .bm-date-price {
    border-left-color: rgba(13, 148, 136, .25);
}

.bm-date-badge {
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 4px;
    background: var(--teal-wash);
    color: var(--teal);
}

.bm-date-badge.limited {
    background: #fef2f2;
    color: #ef4444;
}

.bm-date-badge.early {
    background: #fffbeb;
    color: #d97706;
}

/* ── Empty State ── */
.bm-empty {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-4);
}

.bm-empty i {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    display: block;
    color: var(--surface-3, #ccc);
}

/* ── Form ── */
.bm-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.bm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.bm-field {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.bm-field.bm-full {
    grid-column: 1 / -1;
}

.bm-field label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-3);
}

.bm-field label .req {
    color: #ef4444;
}

.bm-field input,
.bm-field select,
.bm-field textarea {
    padding: .7rem .85rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    font-size: .88rem;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    outline: none;
}

.bm-field input:focus,
.bm-field select:focus,
.bm-field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .08);
}

.bm-field input.error,
.bm-field select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .08);
}

.bm-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* ── Summary ── */
.bm-summary-card {
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.bm-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .5rem 0;
    border-bottom: 1px solid var(--surface-2);
}

.bm-sum-row:last-child {
    border-bottom: none;
}

.bm-sum-label {
    font-size: .82rem;
    color: var(--text-4);
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.bm-sum-label i {
    font-size: .72rem;
    width: 16px;
    text-align: center;
    color: var(--teal);
}

.bm-sum-value {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

/* Fiyat dökümü — özette toplam öncesi */
.bm-sum-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .85rem 1.1rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    background: var(--surface-0, #fff);
    margin-bottom: .75rem;
}

.bm-sum-brk-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: .85rem;
    color: var(--text-3);
}

.bm-sum-brk-row span:first-child {
    color: var(--text-4);
}

.bm-sum-brk-row span:last-child {
    color: var(--text);
    font-weight: 600;
}

.bm-sum-brk-row#bmSumSingleRow {
    color: var(--teal);
    padding-top: .5rem;
    border-top: 1px dashed var(--surface-2);
}

.bm-sum-brk-row#bmSumSingleRow span:last-child {
    color: var(--teal);
}

.bm-sum-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--teal-wash), #e0f7f5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(13, 148, 136, .15);
}

.bm-sum-price span {
    font-size: .82rem;
    color: var(--text-3);
    font-weight: 500;
}

.bm-sum-price strong {
    font-size: 1.15rem;
    color: var(--teal);
    font-weight: 800;
}

/* ── Success ── */
.bm-success {
    text-align: center;
    padding: 2rem 0 0;
}

.bm-success-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.bm-success h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}

.bm-success p {
    font-size: .88rem;
    color: var(--text-4);
    margin-bottom: 1.5rem;
}

/* ── Footer / Buttons ── */
.bm-footer {
    margin-top: 1.5rem;
}

.bm-footer-split {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.bm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.bm-btn-next,
.bm-btn-submit {
    background: var(--teal);
    color: #fff;
    flex: 1;
}

.bm-btn-next:hover,
.bm-btn-submit:hover {
    background: var(--teal-dark, #0d7d74);
    box-shadow: 0 4px 16px rgba(13, 148, 136, .3);
}

.bm-btn-next:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.bm-btn-back {
    background: var(--surface-1);
    color: var(--text-3);
    border: 1px solid var(--surface-2);
}

.bm-btn-back:hover {
    background: var(--surface-2);
    color: var(--text);
}

.bm-btn-submit {
    background: var(--teal);
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .bm-card {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .bm-header {
        padding: 1.5rem 1.25rem 0;
    }

    .bm-steps {
        padding: 1.25rem 1.25rem;
    }

    .bm-step-label {
        display: none;
    }

    .bm-body {
        padding: 0 1.25rem 1.5rem;
    }

    .bm-form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Radio Card Groups (Step 2) ── */
.bm-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.bm-radio-card {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .85rem 1rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .2s;
    background: var(--white);
}

.bm-radio-card:hover {
    border-color: var(--teal-soft);
    background: var(--teal-wash);
}

.bm-radio-card.checked,
.bm-radio-card:has(input:checked) {
    border-color: var(--teal);
    background: var(--teal-wash);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .08);
}

.bm-radio-card input {
    display: none;
}

.bm-radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--surface-3, #ccc);
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: border-color .2s;
}

.bm-radio-card:has(input:checked) .bm-radio-dot,
.bm-radio-card.checked .bm-radio-dot {
    border-color: var(--teal);
}

.bm-radio-card:has(input:checked) .bm-radio-dot::after,
.bm-radio-card.checked .bm-radio-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--teal);
}

.bm-radio-content {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

.bm-radio-text {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}

.bm-radio-desc {
    font-size: .75rem;
    color: var(--text-4);
    line-height: 1.4;
}

.bm-radio-price {
    font-size: .75rem;
    color: var(--teal);
    font-weight: 600;
    line-height: 1.4;
}

/* Pax wrap */
.bm-pax-wrap {
    margin-top: .75rem;
}

.bm-field-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: .3rem;
    display: block;
}

.bm-select {
    width: 100%;
    padding: .7rem .85rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    font-size: .88rem;
    color: var(--text);
    background: var(--white);
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.bm-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .08);
}

@media (max-width: 640px) {
    .bm-radio-group {
        grid-template-columns: 1fr;
    }
}

/* ── Info Boxes ── */
.bm-info-box {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    padding: .7rem .85rem;
    border-radius: var(--radius-md);
    font-size: .78rem;
    line-height: 1.45;
    margin-bottom: .4rem;
}

.bm-info-box i {
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.bm-info-blue {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.bm-info-green {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* ── Section Label ── */
.bm-section-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.15rem 0 .5rem;
}

/* ── Counters ── */
.bm-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}

.bm-counter-item {
    text-align: center;
    padding: .75rem .5rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    background: var(--white);
}

.bm-counter-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: .55rem;
    line-height: 1.3;
}

.bm-counter-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
}

.bm-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--surface-2);
    background: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    color: var(--text);
    line-height: 1;
    padding: 0;
}

.bm-counter-btn:hover {
    border-color: var(--teal);
    background: var(--teal-wash);
    color: var(--teal);
}

.bm-counter-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    min-width: 22px;
    text-align: center;
}

/* ── Persons Table ── */
.bm-persons-table {
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: .35rem;
}


/* ── Matching Dropdown (Eslestirme) ── */
.bm-persons-head {
    display: grid;
    grid-template-columns: minmax(100px, .8fr) 1.2fr 1.5fr;
    gap: .75rem;
    padding: .6rem 1rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--surface-2);
}

.bm-person-row {
    display: grid;
    grid-template-columns: minmax(100px, .8fr) 1.2fr 1.5fr;
    gap: .75rem;
    align-items: center;
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--surface-1);
}

.bm-person-row:last-child {
    border-bottom: none;
}

.bm-person-num {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary, #6b21a8);
}

.bm-person-row input[type="text"] {
    width: 100%;
    padding: .55rem .75rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-sm, 6px);
    font-size: .85rem;
    background: var(--white);
    transition: border-color .2s;
    font-family: inherit;
}

.bm-person-row input[type="text"]:focus {
    border-color: var(--primary, #6b21a8);
    outline: none;
}

.bm-match-select-wrap {
    position: relative;
    width: 100%;
}

.bm-match-select {
    width: 100%;
    padding: .55rem .75rem;
    padding-right: 2rem;
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-sm, 6px);
    font-size: .82rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .2s, box-shadow .2s;
}

.bm-match-select:focus {
    border-color: var(--primary, #6b21a8);
    box-shadow: 0 0 0 2px rgba(107, 33, 168, .12);
    outline: none;
}

.bm-match-select option {
    padding: .5rem;
}

.bm-match-arrow {
    position: absolute;
    right: .65rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .65rem;
    color: var(--text-3);
    pointer-events: none;
}

@media (max-width: 640px) {
    .bm-counters {
        grid-template-columns: 1fr;
    }

    .bm-persons-head {
        display: none;
    }

    .bm-person-row {
        grid-template-columns: 1fr;
        gap: .5rem;
        padding: .75rem;
    }

    .bm-person-num {
        font-size: .8rem;
    }
}
/* ── Favori (Kaydet) Butonu Durum Stilleri ── */
.td-fav-btn.is-fav {
    background: var(--teal-wash, #e6fffa) !important;
    color: var(--teal, #14b8a6) !important;
    border-color: var(--teal-soft, #99f6e4) !important;
}
.td-fav-btn.is-fav i { color: #ef4444; }
.td-fav-btn i { transition: transform .2s, color .2s; }
.td-fav-btn:active i { transform: scale(1.25); }
