/* /panel_tur — sistem turu */
.panel-tur-hero {
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(253, 105, 5, 0.08), transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
}
.panel-tur-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(253, 105, 5, 0.25);
    background: rgba(253, 105, 5, 0.06);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fd6905;
}
.panel-tur-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .panel-tur-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
.panel-tur-btn-solid,
.panel-tur-btn-ghost {
    display: inline-flex;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.panel-tur-btn-solid {
    background: #fd6905;
    color: #ffffff !important;
    border: none;
}
.panel-tur-btn-solid:hover {
    background: #e05a04;
    color: #ffffff !important;
}
.panel-tur-btn-ghost {
    background: #ffffff;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
}
.panel-tur-btn-ghost:hover {
    border-color: rgba(253, 105, 5, 0.4);
    color: #fd6905 !important;
}

.panel-tur-layout {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .panel-tur-layout {
        grid-template-columns: minmax(15.5rem, 18.5rem) minmax(0, 1fr);
        gap: 2rem;
        align-items: start;
    }
}

.panel-tur-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
    .panel-tur-nav {
        flex-direction: column;
        gap: 0;
        overflow: visible;
        padding-bottom: 0;
        border-top: 1px solid #e2e8f0;
        position: sticky;
        top: 5.5rem;
    }
}

.panel-tur-nav__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0.75rem 1rem;
    max-width: 14rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    background: #ffffff;
    color: #334155;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
@media (min-width: 1024px) {
    .panel-tur-nav__item {
        max-width: none;
        width: 100%;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #e2e8f0;
        border-left: 2px solid transparent;
        background: transparent;
        padding: 0.95rem 0.25rem 0.95rem 0.85rem;
    }
}
.panel-tur-nav__item:hover {
    border-color: rgba(253, 105, 5, 0.35);
    color: #0f172a;
}
@media (min-width: 1024px) {
    .panel-tur-nav__item:hover {
        border-left-color: rgba(253, 105, 5, 0.35);
        background: rgba(255, 255, 255, 0.7);
    }
}
.panel-tur-nav__item.is-active {
    border-color: #fd6905;
    background: #fff7ed;
    color: #0f172a;
}
@media (min-width: 1024px) {
    .panel-tur-nav__item.is-active {
        border-color: transparent;
        border-bottom-color: #e2e8f0;
        border-left-color: #fd6905;
        background: #ffffff;
    }
}
.panel-tur-nav__num {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fd6905;
}
.panel-tur-nav__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
}
.panel-tur-nav__text {
    display: none;
    font-size: 0.8125rem;
    line-height: 1.45;
    font-weight: 500;
    color: #64748b;
}
@media (min-width: 1024px) {
    .panel-tur-nav__text {
        display: block;
    }
}

.panel-tur-stage {
    min-width: 0;
}
.panel-tur-panel {
    margin: 0;
}
.panel-tur-panel:not(.is-active) {
    display: none !important;
}
.panel-tur-panel.is-active {
    display: block !important;
    animation: panel-tur-fade 0.22s ease;
}
.panel-tur-zoom {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #ffffff;
    cursor: zoom-in;
    text-align: left;
    box-shadow: 0 14px 40px -24px rgba(15, 23, 42, 0.35);
}
.panel-tur-zoom:focus {
    outline: none;
}
.panel-tur-zoom:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #fd6905;
}
.panel-tur-zoom img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top;
}
.panel-tur-meta {
    margin: 0.85rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}
.panel-tur-meta strong {
    color: #0f172a;
    font-weight: 700;
}

@keyframes panel-tur-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.panel-tur-lb {
    display: grid;
    place-items: center;
    padding: 1rem;
}
.panel-tur-lb.hidden {
    display: none !important;
}
.panel-tur-lb__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
}
.panel-tur-lb__box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 72rem);
    max-height: min(92vh, 920px);
    overflow: hidden;
    border-radius: 0.75rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.panel-tur-lb__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.panel-tur-lb__title {
    margin: 0;
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.panel-tur-lb__close {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: 0.375rem;
}
.panel-tur-lb__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.panel-tur-lb__body {
    padding: 0.75rem;
    overflow: auto;
    background: #020617;
}
.panel-tur-lb__body img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(85vh, 800px);
    object-fit: contain;
}

.panel-tur-bottom {
    background: #0f172a;
    border-top: 1px solid #334155;
    color: #f8fafc;
}
.panel-tur-bottom h2 {
    color: #ffffff;
}
.panel-tur-bottom p {
    color: #cbd5e1;
}
.panel-tur-bottom .panel-tur-btn-ghost {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35);
}
.panel-tur-bottom .panel-tur-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.55);
}
.panel-tur-bottom .panel-tur-btn-solid {
    background: #ffffff;
    color: #fd6905 !important;
}
.panel-tur-bottom .panel-tur-btn-solid:hover {
    background: #f8fafc;
    color: #e05a04 !important;
}
