/**
 * Tur rezervasyon — modern, adım adım form (site.css değişkenleriyle uyumlu)
 */
body.tur-rez-body {
    background: linear-gradient(180deg, var(--site-bg-alt) 0%, var(--site-bg) 45%);
}

.tur-rez-shell {
    max-width: 920px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

.tur-rez-back {
    margin: 0 0 1.25rem;
}
.tur-rez-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--site-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.tur-rez-back a:hover {
    color: var(--site-accent);
}

.tur-rez-hero {
    margin: 0 0 1.5rem;
    background: var(--site-card-bg);
    border: 1px solid var(--site-divider);
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.tur-rez-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(145deg, #1c1c1e 0%, #2c2c2e 100%);
    width: 100%;
    min-height: 220px;
    max-height: 520px;
}
.tur-rez-slider-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.tur-rez-slider img {
    width: 100%;
    flex: 0 0 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.tur-rez-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: background 0.2s, transform 0.15s;
}
.tur-rez-slider-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.05);
}
.tur-rez-slider-btn.prev {
    left: 12px;
}
.tur-rez-slider-btn.next {
    right: 12px;
}

.tur-rez-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    justify-content: flex-start;
}
.tur-rez-thumb {
    width: 92px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
    background: var(--site-bg-subtle);
}
.tur-rez-thumb:hover {
    opacity: 1;
}
.tur-rez-thumb.active {
    border-color: var(--site-accent);
    opacity: 1;
    box-shadow: 0 0 0 1px var(--site-accent-soft);
}

.tur-rez-page-title {
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    color: var(--site-text);
}

.tur-rez-meta {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.25rem;
}
.tur-rez-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 999px;
    background: var(--site-accent-soft);
    border: 1px solid var(--site-divider);
    color: var(--site-text-secondary);
}
.tur-rez-meta strong {
    color: var(--site-text);
    font-weight: 600;
}

.tur-rez-desc {
    background: var(--site-card-bg);
    border: 1px solid var(--site-divider);
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--site-card-shadow);
}

/* —— Rezervasyon bloğu —— */
.tur-rez-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--site-divider);
}

.tur-rez-section-head {
    margin-bottom: 1.25rem;
}
.tur-rez-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site-accent);
    margin-bottom: 0.35rem;
}
.tur-rez-section-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--site-text);
}
.tur-rez-section-sub {
    margin: 0.4rem 0 0;
    font-size: 0.95rem;
    color: var(--site-text-muted);
    max-width: 52ch;
}

.tur-rez-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}
.tur-rez-alert::before {
    content: '!';
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tur-rez-hint-banner {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: var(--site-bg-subtle);
    border: 1px solid var(--site-divider);
    color: var(--site-text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

/* Stepper */
.tur-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--site-bg-subtle) 0%, var(--site-bg-alt) 100%);
    border: 1px solid var(--site-divider);
}
.tur-stepper-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--site-text-muted);
}
.tur-stepper-num {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: var(--site-card-bg);
    border: 1px solid var(--site-divider);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--site-text-secondary);
}
.tur-stepper-label {
    font-weight: 500;
    color: var(--site-text-secondary);
}

.tur-rez-form {
    background: var(--site-card-bg);
    border: 1px solid var(--site-divider);
    border-radius: 20px;
    padding: 1.25rem 1.35rem 1.5rem;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.tur-step-card {
    border: 1px solid var(--site-divider);
    border-radius: 16px;
    padding: 1.15rem 1.2rem 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--site-bg-alt) 100%);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.tur-step-card:last-of-type {
    margin-bottom: 0;
}
.tur-step-card:hover {
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.tur-step-card h3 {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--site-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tur-step-card h3 .tur-step-idx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.45rem;
    border-radius: 8px;
    background: var(--site-accent-soft);
    color: var(--site-accent-hover);
    font-size: 0.8rem;
    font-weight: 800;
}

.tur-field label,
.tur-field .tur-field-label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
    color: var(--site-text-secondary);
    font-size: 0.9rem;
}

.tur-field .admin-input,
.tur-field select.admin-input {
    height: 46px;
    border-radius: 12px;
    border-color: rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tur-field .admin-input:focus,
.tur-field select:focus {
    outline: none;
    border-color: var(--site-accent);
    box-shadow: 0 0 0 3px var(--site-accent-soft);
}

.tur-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.tur-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tur-note-box {
    background: var(--site-bg-subtle);
    border: 1px solid var(--site-divider);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
    color: var(--site-text-secondary);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}
.tur-note-box strong {
    color: var(--site-text);
}

/* Takvim */
.tur-cal-wrap {
    max-width: 400px;
    border: 1px solid var(--site-divider);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
    background: var(--site-card-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.tur-cal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}
.tur-cal-nav button {
    border-radius: 10px !important;
    min-width: 2.5rem;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.35rem 0.65rem !important;
}
.tur-cal-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--site-text);
    font-family: var(--site-font-heading);
}
.tur-cal-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--site-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    text-align: center;
}
.tur-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}
.tur-cal-empty {
    height: 42px;
}
.tur-cal-day {
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--site-divider);
    background: var(--site-card-bg);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--site-text);
    transition: background 0.15s, transform 0.1s, border-color 0.15s;
}
.tur-cal-day.enabled {
    font-weight: 700;
    border-color: rgba(0, 0, 0, 0.12);
}
.tur-cal-day.enabled:hover:not(:disabled) {
    background: var(--site-accent-soft);
    border-color: rgba(201, 169, 98, 0.5);
    transform: scale(1.04);
}
.tur-cal-day.disabled {
    opacity: 0.28;
    cursor: not-allowed;
    border-style: dashed;
    background: transparent;
}
.tur-cal-day.selected {
    background: linear-gradient(145deg, var(--site-text) 0%, #3c3c43 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(28, 28, 30, 0.25);
}
.tur-cal-selected {
    margin-top: 0.55rem;
    font-weight: 600;
    color: var(--site-text);
    font-size: 0.92rem;
}

/* Yolcu sayısı */
.tur-pax-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.tur-pax-card {
    min-width: 0;
    border: 1px solid var(--site-divider);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    background: var(--site-card-bg);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.tur-pax-input {
    width: 100% !important;
    max-width: 140px;
    height: 48px !important;
    border-radius: 12px !important;
    font-size: 1.2rem !important;
    text-align: center;
    font-weight: 700 !important;
}

.tur-pax-rows {
    margin-top: 1rem;
}
.tur-pax-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: flex-end;
    margin-bottom: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: var(--site-bg-subtle);
    border: 1px solid var(--site-divider);
}
.tur-pax-row-label {
    min-width: 88px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--site-text-muted);
}

/* Ekstralar */
.tur-extra-row {
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--site-divider);
    border-radius: 12px;
    background: var(--site-card-bg);
    transition: border-color 0.2s;
}
.tur-extra-row:hover {
    border-color: rgba(201, 169, 98, 0.35);
}
.tur-extra-row label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--site-text-secondary);
    flex: 1 1 200px;
}
.tur-extra-row input[type='checkbox'] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--site-accent);
    margin-top: 0.2rem;
}

.tur-rez-actions {
    display: flex;
    justify-content: stretch;
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--site-divider);
}
.tur-rez-submit {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    background: linear-gradient(145deg, var(--site-text) 0%, #3c3c43 100%);
    color: #fff;
    border: none;
    padding: 0.95rem 1.5rem;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(28, 28, 30, 0.22);
    transition: transform 0.15s, box-shadow 0.2s;
}
.tur-rez-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(28, 28, 30, 0.28);
}
.tur-rez-submit:active {
    transform: translateY(0);
}

.tur-rez-closed {
    margin-top: 1.75rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: var(--site-bg-subtle);
    border: 1px solid var(--site-divider);
    color: var(--site-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 760px) {
    .tur-grid-2,
    .tur-grid-3,
    .tur-pax-wrap {
        grid-template-columns: 1fr;
    }
    .tur-rez-form {
        padding: 1rem 1rem 1.25rem;
        border-radius: 16px;
    }
    .tur-rez-slider {
        min-height: 180px;
    }
    .tur-rez-thumbs {
        justify-content: center;
    }
    .tur-stepper {
        gap: 0.5rem;
    }
    .tur-rez-submit {
        max-width: none;
    }
}

/* Başarı sayfası */
.tur-success-shell {
    max-width: 560px;
    margin: 0 auto;
    padding: 0.5rem 0 2.5rem;
}
.tur-success-card {
    background: var(--site-card-bg);
    border: 1px solid var(--site-divider);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.tur-success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.25) 0%, rgba(201, 169, 98, 0.08) 100%);
    border: 1px solid var(--site-divider);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}
.tur-success-title {
    margin: 0 0 0.75rem;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--site-text);
}
.tur-success-ref {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--site-bg-subtle);
    border: 1px solid var(--site-divider);
    font-size: 0.95rem;
    color: var(--site-text-secondary);
}
.tur-success-ref strong {
    color: var(--site-text);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.tur-success-meta {
    margin: 0;
    color: var(--site-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.tur-success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.75rem;
    align-items: stretch;
}
.tur-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
}
.tur-success-btn--primary {
    background: linear-gradient(145deg, var(--site-text) 0%, #3c3c43 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(28, 28, 30, 0.2);
}
.tur-success-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(28, 28, 30, 0.26);
    color: #fff;
}
.tur-success-btn--ghost {
    background: var(--site-card-bg);
    border: 1px solid var(--site-divider);
    color: var(--site-text-secondary);
}
.tur-success-btn--ghost:hover {
    border-color: var(--site-accent);
    color: var(--site-accent-hover);
}
