/* =================================================================== */
/* ================= TUR DETAY SAYFASI LÜKS STİLLERİ ================= */
/* =================================================================== */
.tour-detail-page {
    background: #050e1a;
    min-height: 100vh;
    color: var(--text-silver);
}

.tour-detail-header-section {
    padding: 16rem 3rem 6rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 14, 26, 0.9) 0%, rgba(5, 14, 26, 0.6) 50%, #050e1a 100%),
                url('GÖRSELLER/G9.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tour-hero-subtitle {
    font-size: 1.8rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.tour-body-section {
    padding: 6rem 0 10rem 0;
}

.tour-detail-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.main-gallery-box {
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
}

.main-gallery-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.tour-info-card {
    background: rgba(15, 36, 62, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 4rem;
}

.info-section-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 1.6rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.tour-description-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-silver);
}

.tour-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

.tour-features-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.5rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    padding: 1.2rem 1.6rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tour-features-list li i {
    color: var(--gold-primary);
    font-size: 1.6rem;
}

.tour-booking-cta-box {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(14, 131, 149, 0.2) 0%, rgba(5, 14, 26, 0.6) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 1.6rem;
    padding: 3rem;
    text-align: center;
}

.tour-booking-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.tour-booking-cta-box p {
    font-size: 1.45rem;
    color: var(--text-silver);
    margin-bottom: 2.4rem;
}

.tour-booking-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .tour-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.btn-booking {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-booking:hover{
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

.btn-booking.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
}

.btn-booking.phone {
    background: linear-gradient(45deg, #d4af37, #b48f29);
    color: var(--primary-color);
}