/* ==========================================================================
   Tur detay (tour) sayfası stilleri
   style.css + kamber.css'ten SONRA yüklenir (libraries.php > tour).
   Not: bu sayfadaki .hero/.icon-bubble/.cta-strip global sürümlerden
   FARKLI değerler taşır (ör. icon-bubble 50px), bu yüzden tur'a özel
   olarak burada tutulur ve global tanımları override eder.
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(1100px 580px at 15% 14%, rgba(237, 31, 36, .26), transparent 55%),
        radial-gradient(920px 520px at 84% 18%, rgba(14, 165, 165, .18), transparent 52%),
        linear-gradient(180deg, #081225, #061021 72%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, .84), rgba(2, 6, 23, .34));
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506968430777-bf7784a87f23?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
    opacity: .36;
    transform: scale(1.03);
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: .45rem .8rem;
    border: 1px solid var(--nr-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-weight: 700;
}

.hero h1 {
    letter-spacing: -.035em;
    font-weight: 800;
    line-height: 1.02;
}

.hero p {
    color: rgba(255, 255, 255, .86);
}

/* Kartlar / istatistik */
.glass-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(14px);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 992px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .stats-strip { grid-template-columns: 1fr; }
}

.stat-chip {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
}

.stat-chip .label { color: rgba(255, 255, 255, .72); font-size: .82rem; }
.stat-chip .value { font-size: 1.05rem; font-weight: 800; }

/* Rezervasyon kartı */
.booking-card {
    position: sticky;
    top: 96px;
    background: #fff;
    border: 1px solid var(--nr-line);
    border-radius: 1.35rem;
    overflow: hidden;
}

.booking-head {
    background: linear-gradient(135deg, rgba(237, 31, 36, .10), rgba(242, 102, 105, .08));
    border-bottom: 1px solid var(--nr-line);
}

.price-tag { display: flex; align-items: end; gap: .5rem; }
.price-tag .main { font-size: 2rem; line-height: 1; font-weight: 850; color: var(--nr-brand); }
.price-tag .sub { color: rgba(255, 255, 255, .72); font-weight: 600; }

/* İçerik kartları */
.feature-card,
.content-card,
.faq-item,
.review-card,
.mini-card {
    background: #fff;
    border: 1px solid var(--nr-line);
    border-radius: 1.2rem;
}

.feature-card { padding: 1.2rem; height: 100%; }

.icon-bubble {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(237, 31, 36, .16), rgba(242, 102, 105, .14));
    border: 1px solid rgba(2, 6, 23, .06);
    font-size: 1.2rem;
}

.detail-list { display: grid; gap: .9rem; }

.detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .9rem;
    border-bottom: 1px dashed rgba(2, 6, 23, .10);
}

.detail-row:last-child { border-bottom: none; padding-bottom: 0; }

/* Zaman çizelgesi (günlük program) */
.timeline { display: grid; gap: 1rem; position: relative; }

.timeline::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(237, 31, 36, .28), rgba(11, 18, 32, .08));
}

.timeline-item { position: relative; padding-left: 3.2rem; }

.timeline-dot {
    position: absolute;
    left: 0;
    top: .2rem;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid rgba(237, 31, 36, .25);
    color: var(--nr-brand);
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(2, 6, 23, .08);
}

.check-list { display: grid; gap: .75rem; }
.check-item { display: flex; gap: .75rem; align-items: flex-start; }
.check-item i { color: var(--nr-brand); }

/* Galeri (tur'a özel g1..g7 ızgarası) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    min-height: 210px;
    border-radius: 1.15rem;
    overflow: hidden;
    border: 1px solid var(--nr-line);
    box-shadow: 0 16px 35px rgba(2, 6, 23, .10);
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, .58));
    opacity: 0;
    transition: .25s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::before { opacity: 1; }

.gallery-item .cap {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: .25s ease;
}

.gallery-item:hover .cap { opacity: 1; transform: none; }

.gallery-item.g1 { grid-column: span 7; min-height: 340px; }
.gallery-item.g2 { grid-column: span 5; min-height: 340px; }
.gallery-item.g3,
.gallery-item.g4,
.gallery-item.g5 { grid-column: span 4; }
.gallery-item.g6 { grid-column: span 6; min-height: 280px; }
.gallery-item.g7 { grid-column: span 6; min-height: 280px; }

@media (max-width: 992px) {
    .gallery-item.g1,
    .gallery-item.g2,
    .gallery-item.g6,
    .gallery-item.g7 { grid-column: span 12; min-height: 280px; }
    .gallery-item.g3,
    .gallery-item.g4,
    .gallery-item.g5 { grid-column: span 6; }
}

@media (max-width: 576px) {
    .gallery-item { grid-column: span 12 !important; min-height: 220px !important; }
}

/* Diğer */
.badge-soft {
    background: rgba(237, 31, 36, .08);
    color: var(--nr-brand-2);
    border: 1px solid rgba(237, 31, 36, .12);
}

.cta-strip {
    background:
        radial-gradient(900px 500px at 25% 10%, rgba(14, 165, 165, .22), transparent 60%),
        radial-gradient(700px 420px at 75% 0%, rgba(245, 158, 11, .22), transparent 55%),
        linear-gradient(180deg, #071125, #061021);
    color: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--nr-brand);
    --bs-btn-border-color: var(--nr-brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d3191d;
    --bs-btn-hover-border-color: #d3191d;
    --bs-btn-focus-shadow-rgb: 237, 31, 36;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #c8161a;
    --bs-btn-active-border-color: #c8161a;
    border-radius: 999px;
    font-weight: 800;
}

.btn-wa { border-radius: 999px; font-weight: 800; }

.accordion-item {
    border: 1px solid var(--nr-line);
    border-radius: 1rem !important;
    overflow: hidden;
    background: #fff;
}

.accordion-button { font-weight: 700; }

.accordion-button:not(.collapsed) {
    background: rgba(237, 31, 36, .05);
    color: var(--nr-ink);
    box-shadow: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(14, 165, 165, .10);
    color: var(--nr-ink-2);
    font-weight: 700;
    font-size: .85rem;
}
