﻿/* =========================================================
   TOUR DETAIL PAGE STYLES - Turizm360
   Tur Detay Sayfası Özel Stilleri
   ========================================================= */

/* --------------------------------------------------------- */
/* BREADCRUMB */
/* --------------------------------------------------------- */

.tour-detail--breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #eeeeee;
}

.tour-detail--breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.tour-detail--breadcrumb .breadcrumb-item a:hover {
    color: #0dcaf0;
}

.tour-detail--breadcrumb .breadcrumb-item.active {
    color: #333333;
    font-size: 0.85rem;
    font-weight: 500;
}

.tour-detail--breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
    content: "›";
}

/* --------------------------------------------------------- */
/* MAIN SECTION */
/* --------------------------------------------------------- */

.tour-detail--main {
    background-color: #f8f9fa;
}

/* --------------------------------------------------------- */
/* HEADER */
/* --------------------------------------------------------- */

.tour-detail--header {
    margin-bottom: 1.2rem;
}

.tour-detail--header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.tour-detail--header-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.tour-detail--action-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.tour-detail--action-btn:hover {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.3);
}

.tour-detail--action-btn.active {
    border-color: #e74c3c;
    color: #ffffff;
}

.tour-detail--action-btn i {
    font-size: 1.1rem;
}

.tour-detail--badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.tour-detail--badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tour-detail--badge i {
    font-size: 0.8rem;
}

.tour-detail--badge--culture {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.tour-detail--badge--discount {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.tour-detail--title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.tour-detail--intro {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 0.8rem 0;
}

.tour-detail--meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.tour-detail--location {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tour-detail--location i {
    color: #0dcaf0;
}

.tour-detail--rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.tour-detail--rating i {
    color: #ffc107;
    font-size: 0.85rem;
}

.tour-detail--rating strong {
    color: #333333;
    margin-left: 0.3rem;
}

/* --------------------------------------------------------- */
/* GALLERY */
/* --------------------------------------------------------- */

.tour-detail--gallery {
    margin-bottom: 1.5rem;
}

.tour-detail--main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 16/9;
}

.tour-detail--main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.tour-detail--gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tour-detail--gallery-btn i {
    font-size: 1.2rem;
    color: #333333;
}

.tour-detail--gallery-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.tour-detail--gallery-prev {
    left: 15px;
}

.tour-detail--gallery-next {
    right: 15px;
}

.tour-detail--image-counter {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Thumbnails */
.tour-detail--thumbnails {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tour-detail--thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tour-detail--thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail--thumb:hover {
    opacity: 0.9;
}

.tour-detail--thumb.active {
    opacity: 1;
    border-color: #0dcaf0;
}

/* --------------------------------------------------------- */
/* QUICK INFO */
/* --------------------------------------------------------- */

.tour-detail--quick-info {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tour-detail--info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding: 1rem 0.6rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tour-detail--info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tour-detail--info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tour-detail--info-text span {
    font-size: 0.72rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.tour-detail--info-text span i {
    font-size: 0.85rem;
    color: #0dcaf0;
}

.tour-detail--info-text strong {
    font-size: 0.88rem;
    color: #1a1f2e;
    font-weight: 600;
}

/* --------------------------------------------------------- */
/* TABS */
/* --------------------------------------------------------- */

.tour-detail--tabs {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.tour-detail--tabs .nav-tabs {
    border: none;
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.tour-detail--tabs .nav-link {
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.tour-detail--tabs .nav-link i {
    font-size: 1rem;
}

.tour-detail--tabs .nav-link:hover {
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.05);
}

.tour-detail--tabs .nav-link.active {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: #ffffff;
}

.tour-detail--tab-content {
    padding: 1.5rem;
}

.tour-detail--tab-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 1rem;
}

.tour-detail--tab-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1f2e;
    margin: 1.5rem 0 1rem;
}

.tour-detail--tab-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Features */
.tour-detail--features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.tour-detail--feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tour-detail--feature i {
    color: #22c55e;
    font-size: 1rem;
}

.tour-detail--feature span {
    font-size: 0.85rem;
    color: #444444;
}

/* Program */
.tour-detail--program {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-detail--day {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid #0dcaf0;
}

.tour-detail--day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.tour-detail--day-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.tour-detail--day-title h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f2e;
}

.tour-detail--day-title span {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tour-detail--day-content {
    padding: 1rem 1.2rem;
}

.tour-detail--day-content p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.tour-detail--day-meals {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-detail--day-meals span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #6c757d;
    background: #ffffff;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}

.tour-detail--day-meals i {
    color: #0dcaf0;
}

/* Included Cards */
.tour-detail--included-card {
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
}

.tour-detail--included-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.tour-detail--included-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-detail--included-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tour-detail--included-card li:last-child {
    border-bottom: none;
}

.tour-detail--included-card li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tour-detail--included-yes {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tour-detail--included-yes h4 {
    color: #16a34a;
}

.tour-detail--included-yes li i {
    color: #22c55e;
}

.tour-detail--included-no {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.tour-detail--included-no h4 {
    color: #dc2626;
}

.tour-detail--included-no li i {
    color: #ef4444;
}

/* Reviews Summary */
.tour-detail--reviews-summary {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.tour-detail--reviews-score {
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid #dddddd;
}

.tour-detail--reviews-score .score {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1f2e;
    line-height: 1;
}

.tour-detail--reviews-score .stars {
    margin: 0.5rem 0;
}

.tour-detail--reviews-score .stars i {
    color: #ffc107;
    font-size: 1rem;
}

.tour-detail--reviews-score .count {
    font-size: 0.85rem;
    color: #6c757d;
}

.tour-detail--reviews-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.tour-detail--reviews-bars .bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.tour-detail--reviews-bars .bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.tour-detail--reviews-bars .fill {
    height: 100%;
    background: linear-gradient(90deg, #0dcaf0, #0d6efd);
    border-radius: 4px;
}

/* Reviews List */
.tour-detail--reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-detail--review {
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.tour-detail--review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.tour-detail--review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.tour-detail--review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail--review-info {
    flex: 1;
}

.tour-detail--review-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f2e;
}

.tour-detail--review-info span {
    font-size: 0.8rem;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tour-detail--review-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.tour-detail--review p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* --------------------------------------------------------- */
/* BOOKING CARD */
/* --------------------------------------------------------- */

.tour-detail--booking-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Sold Out Message */
.tour-detail--sold-out-message {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tour-detail--sold-out-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fiyat gizli - iletişime geçiniz için mavi icon */
.tour-detail--sold-out-message:has(.tour-detail--contact-btn) .tour-detail--sold-out-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.tour-detail--sold-out-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.tour-detail--sold-out-message h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.tour-detail--sold-out-message p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.tour-detail--contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-detail--contact-btn:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0bb5d8 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.tour-detail--contact-btn i {
    font-size: 1.1rem;
}

/* Price Header */
.tour-detail--price-header {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    padding: 1.5rem;
    text-align: center;
}

.tour-detail--price-badge {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-decoration: line-through;
}

.tour-detail--price-old {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.tour-detail--price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.tour-detail--price-current span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Booking Form */
.tour-detail--booking-form {
    padding: 1.5rem;
}

.tour-detail--form-group {
    margin-bottom: 1rem;
}

.tour-detail--form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444444;
    margin-bottom: 0.5rem;
}

.tour-detail--form-group label i {
    color: #0dcaf0;
}

.tour-detail--select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 1rem center/10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-detail--select:focus {
    outline: none;
    border-color: #0dcaf0;
    box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.1);
}

/* Guests */
.tour-detail--guests {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tour-detail--guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.tour-detail--guest-info strong {
    display: block;
    font-size: 0.9rem;
    color: #1a1f2e;
}

.tour-detail--guest-info small {
    font-size: 0.75rem;
    color: #999999;
}

.tour-detail--guest-counter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tour-detail--counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-detail--counter-btn:hover {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #ffffff;
}

.tour-detail--guest-counter span {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1f2e;
}

/* Price Breakdown */
.tour-detail--price-breakdown {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.tour-detail--price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.tour-detail--price-discount {
    color: #22c55e;
}

.tour-detail--price-total {
    border-top: 1px solid #e0e0e0;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1f2e;
}

/* Book Buttons Container */
.tour-detail--book-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Book Button */
.tour-detail--book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-detail--book-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* WhatsApp Button */
.tour-detail--whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* Guarantees */
.tour-detail--guarantees {
    display: flex;
    justify-content: space-around;
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.tour-detail--guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.tour-detail--guarantee-item i {
    font-size: 1.3rem;
    color: #22c55e;
}

.tour-detail--guarantee-item span {
    font-size: 0.7rem;
    color: #6c757d;
}

/* Support Card */
.tour-detail--support-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    border-radius: 16px;
    margin-top: 1rem;
}

.tour-detail--support-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-detail--support-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.tour-detail--support-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.tour-detail--support-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.tour-detail--support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tour-detail--support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-detail--support-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* --------------------------------------------------------- */
/* RELATED TOURS (Bunlara da Bakabilirsiniz) */
/* --------------------------------------------------------- */

.tour-detail--related {
    background: #ffffff;
}

.tour-detail--related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tour-detail--related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0;
}

.tour-detail--related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0dcaf0;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-detail--related-link:hover {
    color: #0d6efd;
    gap: 0.6rem;
}

/* --------------------------------------------------------- */
/* RESPONSIVE - TABLET */
/* --------------------------------------------------------- */

@media (max-width: 992px) {
    .tour-detail--quick-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .tour-detail--features {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------- */
/* RESPONSIVE - MOBILE */
/* --------------------------------------------------------- */

@media (max-width: 768px) {
    .tour-detail--related-title {
        font-size: 1.2rem;
    }

    .tour-detail--related-link {
        font-size: 0.8rem;
    }

    .tour-detail--action-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .tour-detail--action-btn i {
        font-size: 1rem;
    }

    .tour-detail--title {
        font-size: 1.4rem;
    }

    .tour-detail--intro {
        font-size: 0.85rem;
    }

    .tour-detail--meta {
        gap: 1rem;
    }

    .tour-detail--gallery-btn {
        width: 38px;
        height: 38px;
    }

    .tour-detail--gallery-btn i {
        font-size: 1rem;
    }

    .tour-detail--favorite,
    .tour-detail--share {
        width: 36px;
        height: 36px;
    }

    .tour-detail--quick-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .tour-detail--info-item {
        padding: 0.8rem 0.4rem;
    }

    .tour-detail--info-text span i {
        font-size: 0.75rem;
    }

    .tour-detail--info-text strong {
        font-size: 0.8rem;
    }

    .tour-detail--tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .tour-detail--tab-content {
        padding: 1rem;
    }

    .tour-detail--tab-content h3 {
        font-size: 1.1rem;
    }

    .tour-detail--reviews-summary {
        flex-direction: column;
        gap: 1rem;
    }

    .tour-detail--reviews-score {
        border-right: none;
        border-bottom: 1px solid #dddddd;
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .tour-detail--reviews-score .score {
        font-size: 2.5rem;
    }

    .tour-detail--booking-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .tour-detail--current-price {
        font-size: 1.8rem;
    }
}

/* --------------------------------------------------------- */
/* RESPONSIVE - SMALL MOBILE */
/* --------------------------------------------------------- */

@media (max-width: 400px) {
    .tour-detail--title {
        font-size: 1.2rem;
    }

    .tour-detail--intro {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tour-detail--quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .tour-detail--info-item {
        padding: 0.7rem 0.3rem;
    }

    .tour-detail--info-text span {
        font-size: 0.65rem;
    }

    .tour-detail--info-text span i {
        font-size: 0.7rem;
    }

    .tour-detail--info-text strong {
        font-size: 0.75rem;
    }

    .tour-detail--thumb {
        width: 60px;
        height: 45px;
    }

    .tour-detail--tabs .nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }

    .tour-detail--tabs .nav-link i {
        display: none;
    }

    .tour-detail--day-header {
        flex-wrap: wrap;
    }

    .tour-detail--day-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* --------------------------------------------------------- */
/* ACCOMMODATION TAB STYLES (Konaklama Sekmesi)              */
/* --------------------------------------------------------- */

.tour-detail--accommodation-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eeeeee;
}

.tour-detail--accommodation-intro h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 0.5rem;
}

.tour-detail--accommodation-intro h3 i {
    color: #0dcaf0;
}

.tour-detail--accommodation-intro p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* City Section */
.tour-detail--city-section {
    margin-bottom: 2rem;
}

.tour-detail--city-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.tour-detail--city-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(13, 202, 240, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-detail--city-icon i {
    font-size: 1.3rem;
    color: #0dcaf0;
}

.tour-detail--city-info h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.tour-detail--city-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hotels Grid */
.tour-detail--hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    border: 1px solid #eeeeee;
    border-top: none;
}

/* Hotel Card */
.tour-detail--hotel-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tour-detail--hotel-card:hover {
    transform: translateY(-4px);
}

/* Hotel Image */
.tour-detail--hotel-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tour-detail--hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-detail--hotel-card:hover .tour-detail--hotel-image img {
    transform: scale(1.05);
}

.tour-detail--hotel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tour-detail--hotel-badge--premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Hotel Content */
.tour-detail--hotel-content {
    padding: 1rem;
}


.tour-detail--hotel-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f2e;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.tour-detail--hotel-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.tour-detail--hotel-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 0.8rem 0;
}

.tour-detail--hotel-location i {
    color: #0dcaf0;
    font-size: 0.85rem;
}

/* Hotel Amenities */
.tour-detail--hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eeeeee;
}

.tour-detail--hotel-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: #6c757d;
    background: #f5f5f5;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.tour-detail--hotel-amenities span i {
    font-size: 0.8rem;
    color: #0dcaf0;
}

/* Hotel Rooms */
.tour-detail--hotel-rooms {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tour-detail--room-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.tour-detail--room-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.tour-detail--room-info {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 1;
}

.tour-detail--room-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-detail--room-icon i {
    font-size: 1rem;
    color: #6c757d;
}

.tour-detail--room-details h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1f2e;
}

.tour-detail--room-details span {
    font-size: 0.72rem;
    color: #999999;
}

.tour-detail--room-price {
    text-align: right;
    flex-shrink: 0;
}

.tour-detail--room-price .price {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1f2e;
}

.tour-detail--room-price .label {
    font-size: 0.7rem;
    color: #6c757d;
}

.tour-detail--room-price .label.included,
.tour-detail--room-price .price:has(+ .label:contains("Dahil")) {
    color: #22c55e;
}



/* --------------------------------------------------------- */
/* RESPONSIVE - ACCOMMODATION                                */
/* --------------------------------------------------------- */

@media (max-width: 992px) {
    .tour-detail--hotels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tour-detail--city-header {
        padding: 0.8rem 1rem;
    }

    .tour-detail--city-icon {
        width: 38px;
        height: 38px;
    }

    .tour-detail--city-info h4 {
        font-size: 1rem;
    }

    .tour-detail--hotel-content {
        padding: 0.8rem;
    }

    .tour-detail--hotel-name {
        font-size: 0.9rem;
    }

    .tour-detail--room-item {
        padding: 0.6rem;
    }

    .tour-detail--room-details h6 {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .tour-detail--hotel-amenities span {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .tour-detail--room-info {
        gap: 0.5rem;
    }

    .tour-detail--room-icon {
        width: 30px;
        height: 30px;
    }

    .tour-detail--room-details h6 {
        font-size: 0.75rem;
    }

    .tour-detail--room-details span {
        font-size: 0.65rem;
    }

    .tour-detail--room-price .price {
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------------- */
/* CALENDAR STYLES - Günübirlik Turlar İçin */
/* --------------------------------------------------------- */

.tour-detail--calendar {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.tour-detail--calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.tour-detail--calendar-title {
    font-weight: 600;
    color: #333333;
    font-size: 0.95rem;
}

.tour-detail--calendar-nav {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.tour-detail--calendar-nav:hover {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #ffffff;
}

.tour-detail--calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.tour-detail--calendar-day-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c757d;
    padding: 0.5rem 0;
    text-transform: uppercase;
}

.tour-detail--calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    color: #999999;
    background: #f8f9fa;
    cursor: default;
}

.tour-detail--calendar-day--empty {
    background: transparent;
}

.tour-detail--calendar-day--past {
    color: #cccccc;
    background: #fafafa;
}

.tour-detail--calendar-day--available {
    background: #d4edda;
    color: #155724;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tour-detail--calendar-day--available:hover {
    background: #28a745;
    color: #ffffff;
    transform: scale(1.1);
}

.tour-detail--calendar-day--selected {
    background: #0dcaf0 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.4);
}

.tour-detail--selected-date {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-detail--selected-date i {
    color: #0dcaf0;
}

/* --------------------------------------------------------- */
/* PRICE DISPLAY STYLES */
/* --------------------------------------------------------- */

.tour-detail--select-date-msg,
.tour-detail--no-price {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #6c757d;
}

.tour-detail--select-date-msg i,
.tour-detail--no-price i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #0dcaf0;
}

.tour-detail--no-price i {
    color: #ffc107;
}

.tour-detail--select-date-msg p,
.tour-detail--no-price p {
    margin: 0;
    font-size: 0.9rem;
}

.tour-detail--loading {
    text-align: center;
    padding: 1rem;
    color: #6c757d;
}

.tour-detail--loading i {
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Book Button Contact State */
.tour-detail--book-btn--contact {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
}


/* --------------------------------------------------------- */
/* CALENDAR RESPONSIVE */
/* --------------------------------------------------------- */

@media (max-width: 400px) {
    .tour-detail--calendar {
        padding: 0.75rem;
    }
    
    .tour-detail--calendar-day {
        font-size: 0.75rem;
    }
    
    .tour-detail--calendar-day-header {
        font-size: 0.6rem;
    }
}







/* --------------------------------------------------------- */
/* HOTEL/ROOM SELECTION STYLES */
/* --------------------------------------------------------- */

.tour-detail--hotel-fixed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #e8f4f8;
    border: 1px solid #0dcaf0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1f2e;
}

.tour-detail--hotel-fixed i {
    color: #0dcaf0;
}

/* Room Price Breakdown in Accommodation Tab */
.tour-detail--room-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tour-detail--room-price-breakdown .price-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.tour-detail--room-price-breakdown .price-item i {
    font-size: 0.7rem;
    color: #999;
}

.tour-detail--room-price-breakdown .price-item strong {
    color: #1a1f2e;
    font-weight: 600;
}

/* Price Section Title */
.tour-detail--price-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-top: 1px dashed #e0e0e0;
}

.tour-detail--price-section-title:first-child {
    margin-top: 0;
    border-top: none;
}

.tour-detail--price-section-title i {
    color: #0dcaf0;
}

/* Accommodation Intro */
.tour-detail--accommodation-intro {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.tour-detail--accommodation-intro h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 0.5rem;
}

.tour-detail--accommodation-intro h3 i {
    color: #0dcaf0;
}

.tour-detail--accommodation-intro p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* --------------------------------------------------------- */
/* RESPONSIVE - HOTEL/ROOM SELECTION */
/* --------------------------------------------------------- */

@media (max-width: 768px) {
    .tour-detail--room-price-breakdown {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tour-detail--room-price-breakdown .price-item {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .tour-detail--hotel-fixed {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .tour-detail--room-price-breakdown .price-item {
        font-size: 0.65rem;
    }
}


/* --------------------------------------------------------- */
/* ROOM CARD WITH SLIDER */
/* --------------------------------------------------------- */

.tour-detail--room-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tour-detail--room-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.tour-detail--room-card:last-child {
    margin-bottom: 0;
}

/* Room Slider */
.tour-detail--room-slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.tour-detail--room-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.tour-detail--room-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-detail--room-slide.active {
    opacity: 1;
}

.tour-detail--room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Buttons */
.tour-detail--room-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
}

.tour-detail--room-slider:hover .tour-detail--room-slider-btn {
    opacity: 1;
}

.tour-detail--room-slider-btn:hover {
    background: #0dcaf0;
    color: #ffffff;
}

.tour-detail--room-slider-btn.prev {
    left: 8px;
}

.tour-detail--room-slider-btn.next {
    right: 8px;
}

.tour-detail--room-slider-btn i {
    font-size: 0.9rem;
}

/* Slider Dots */
.tour-detail--room-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.tour-detail--room-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-detail--room-slider-dots .dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.tour-detail--room-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Room Content */
.tour-detail--room-content {
    padding: 1rem;
}

.tour-detail--room-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f2e;
    margin: 0 0 0.5rem 0;
}

.tour-detail--room-props {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 0.75rem 0;
}

/* Room Price in Card */
.tour-detail--room-card .tour-detail--room-price-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.tour-detail--room-card .tour-detail--room-price-breakdown .price-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.tour-detail--room-card .tour-detail--room-price-breakdown .price-item i {
    font-size: 0.75rem;
    color: #0dcaf0;
}

.tour-detail--room-card .tour-detail--room-price-breakdown .price-item strong {
    color: #1a1f2e;
    font-weight: 600;
}

/* --------------------------------------------------------- */
/* ROOM CARD RESPONSIVE */
/* --------------------------------------------------------- */

@media (max-width: 768px) {
    .tour-detail--room-slider {
        height: 150px;
    }
    
    .tour-detail--room-slider-btn {
        width: 28px;
        height: 28px;
        opacity: 1;
    }
    
    .tour-detail--room-content {
        padding: 0.75rem;
    }
    
    .tour-detail--room-name {
        font-size: 0.9rem;
    }
    
    .tour-detail--room-props {
        font-size: 0.75rem;
    }
    
    .tour-detail--room-card .tour-detail--room-price-breakdown .price-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
}

@media (max-width: 400px) {
    .tour-detail--room-slider {
        height: 130px;
    }
    
    .tour-detail--room-slider-dots .dot {
        width: 6px;
        height: 6px;
    }
}


/* --------------------------------------------------------- */
/* ROOM ITEM ACTIONS & VIEW BUTTON */
/* --------------------------------------------------------- */

.tour-detail--room-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.tour-detail--room-view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.tour-detail--room-view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.4);
}

.tour-detail--room-view-btn i {
    font-size: 1rem;
}

/* --------------------------------------------------------- */
/* ROOM DETAIL MODAL STYLES */
/* --------------------------------------------------------- */

/* --------------------------------------------------------- */
/* ROOM DETAIL MODAL - MODERN DESIGN */
/* --------------------------------------------------------- */

.room-modal--dialog {
    max-width: 900px;
}

.room-modal--content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.room-modal--close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.room-modal--close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: rotate(90deg);
}

.room-modal--close i {
    font-size: 1.1rem;
}

.room-modal--wrapper {
    display: flex;
    min-height: 450px;
}

/* Left Side - Images */
.room-modal--left {
    flex: 0 0 55%;
    background: #1a1f2e;
    display: flex;
    flex-direction: column;
}

.room-modal--slider {
    position: relative;
    flex: 1;
    min-height: 350px;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    overflow: hidden;
}

.room-modal--slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-modal--slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-modal--slide.active {
    opacity: 1;
}

.room-modal--slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-modal--slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.room-modal--slider:hover .room-modal--slider-btn {
    opacity: 1;
}

.room-modal--slider-btn:hover {
    background: #0dcaf0;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.room-modal--slider-btn.prev { left: 15px; }
.room-modal--slider-btn.next { right: 15px; }
.room-modal--slider-btn i { font-size: 1.2rem; }

.room-modal--slider-counter {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.room-modal--slider-counter i {
    font-size: 1rem;
    opacity: 0.8;
}

.room-modal--no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.5);
}

.room-modal--no-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.room-modal--no-image span {
    font-size: 0.9rem;
}

/* Thumbnails */
.room-modal--thumbnails {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
}

.room-modal--thumb {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-modal--thumb:hover {
    opacity: 0.8;
}

.room-modal--thumb.active {
    opacity: 1;
    border-color: #0dcaf0;
}

.room-modal--thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Info */
.room-modal--right {
    flex: 0 0 45%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.room-modal--header {
    margin-bottom: 1.5rem;
}

.room-modal--badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.room-modal--badge i {
    font-size: 0.85rem;
}

.room-modal--name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0;
    line-height: 1.3;
}

.room-modal--section {
    margin-bottom: 1.5rem;
}

.room-modal--section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.room-modal--section-title i {
    color: #0dcaf0;
    font-size: 1rem;
}

.room-modal--props {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-modal--prop {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    font-size: 0.8rem;
    color: #444;
    transition: all 0.3s ease;
}

.room-modal--prop:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
}

.room-modal--prop i {
    color: #22c55e;
    font-size: 0.9rem;
}

/* Price Grid */
.room-modal--price-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.room-modal--price-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.room-modal--price-item:hover {
    transform: translateX(5px);
}

.room-modal--price-adult {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.1) 0%, rgba(13, 110, 253, 0.1) 100%);
    border-left: 4px solid #0dcaf0;
}

.room-modal--price-child {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-left: 4px solid #22c55e;
}

.room-modal--price-baby {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-left: 4px solid #fbbf24;
}

.room-modal--price-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.room-modal--price-adult .room-modal--price-icon {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
    color: #ffffff;
}

.room-modal--price-child .room-modal--price-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

.room-modal--price-baby .room-modal--price-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
}

.room-modal--price-icon i {
    font-size: 1.1rem;
}

.room-modal--price-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-modal--price-info .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
}

.room-modal--price-info .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1f2e;
}

/* Footer */
.room-modal--footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed #e0e0e0;
}

.room-modal--note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

.room-modal--note i {
    color: #0dcaf0;
}

/* --------------------------------------------------------- */
/* ROOM MODAL RESPONSIVE */
/* --------------------------------------------------------- */

@media (max-width: 900px) {
    .room-modal--dialog {
        max-width: 95%;
        margin: 1rem;
    }
    
    .room-modal--wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .room-modal--left {
        flex: none;
    }
    
    .room-modal--slider {
        min-height: 250px;
    }
    
    .room-modal--right {
        flex: none;
        padding: 1.5rem;
    }
    
    .room-modal--name {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .room-modal--dialog {
        margin: 0.5rem;
    }
    
    .room-modal--slider {
        min-height: 200px;
    }
    
    .room-modal--slider-btn {
        width: 36px;
        height: 36px;
        opacity: 1;
    }
    
    .room-modal--thumbnails {
        padding: 8px;
        gap: 6px;
    }
    
    .room-modal--thumb {
        width: 50px;
        height: 38px;
    }
    
    .room-modal--right {
        padding: 1rem;
    }
    
    .room-modal--name {
        font-size: 1.1rem;
    }
    
    .room-modal--prop {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .room-modal--price-item {
        padding: 0.75rem;
    }
    
    .room-modal--price-icon {
        width: 35px;
        height: 35px;
    }
    
    .room-modal--price-info .price {
        font-size: 1.1rem;
    }
    
    .room-modal--close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}


/* --------------------------------------------------------- */
/* HOTEL IMAGE SLIDER */
/* --------------------------------------------------------- */

.tour-detail--hotel-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.tour-detail--hotel-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.tour-detail--hotel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-detail--hotel-slide.active {
    opacity: 1;
}

.tour-detail--hotel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-detail--hotel-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 3;
}

.tour-detail--hotel-card:hover .tour-detail--hotel-slider-btn {
    opacity: 1;
}

.tour-detail--hotel-slider-btn:hover {
    background: #0dcaf0;
    color: #ffffff;
}

.tour-detail--hotel-slider-btn.prev {
    left: 8px;
}

.tour-detail--hotel-slider-btn.next {
    right: 8px;
}

.tour-detail--hotel-slider-btn i {
    font-size: 0.9rem;
}

.tour-detail--hotel-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.tour-detail--hotel-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-detail--hotel-slider-dots .dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.tour-detail--hotel-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Badge position adjustment for slider */
.tour-detail--hotel-slider .tour-detail--hotel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
}

/* --------------------------------------------------------- */
/* HOTEL SLIDER RESPONSIVE */
/* --------------------------------------------------------- */

@media (max-width: 768px) {
    .tour-detail--hotel-slider-btn {
        width: 28px;
        height: 28px;
        opacity: 1;
    }
    
    .tour-detail--hotel-slider-dots .dot {
        width: 6px;
        height: 6px;
    }
}


/* ==================== YORUM FORMU STİLLERİ ==================== */
.tour-detail--review-form .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.tour-detail--review-form .card-header {
    border-bottom: none;
    padding: 1rem 1.25rem;
}

.tour-detail--review-form .card-body {
    padding: 1.5rem;
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.star-rating-input i {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
}

.star-rating-input i.bi-star-fill {
    color: #ffc107;
}

.star-rating-input i:hover,
.star-rating-input i.hover {
    color: #ffc107;
    transform: scale(1.1);
}

.tour-detail--review-form textarea {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    resize: none;
}

.tour-detail--review-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.tour-detail--review-form .btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.tour-detail--review-form .alert {
    border-radius: 8px;
    border: none;
}


/* --------------------------------------------------------- */
/* KONTENJAN BİLGİSİ */
/* --------------------------------------------------------- */

.tour-detail--quota-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tour-detail--quota-info i {
    font-size: 1rem;
    color: #d97706;
}

.tour-detail--quota-info strong {
    color: #b45309;
    font-weight: 700;
}

/* --------------------------------------------------------- */
/* TUR TAKVİMİ BUTONU */
/* --------------------------------------------------------- */

.tour-detail--calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    background: transparent;
    color: #0d6efd;
    border: 1px dashed #0d6efd;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-detail--calendar-btn:hover {
    background: rgba(13, 110, 253, 0.05);
    border-style: solid;
}

/* --------------------------------------------------------- */
/* TUR TAKVİMİ MODAL */
/* --------------------------------------------------------- */

.tour-calendar-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.tour-calendar-modal--header {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border: none;
}

.tour-calendar-modal--header .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-calendar-modal--body {
    padding: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

.tour-calendar-modal--list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tour-calendar-modal--item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.tour-calendar-modal--item:hover {
    background: #e9ecef;
}

.tour-calendar-modal--item-past {
    opacity: 0.6;
}

.tour-calendar-modal--date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tour-calendar-modal--date-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
}

.tour-calendar-modal--item-past .tour-calendar-modal--date-icon {
    background: #6c757d;
}

.tour-calendar-modal--date-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tour-calendar-modal--date-range {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1f2e;
}

.tour-calendar-modal--date-duration {
    font-size: 0.75rem;
    color: #6c757d;
}

.tour-calendar-modal--badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tour-calendar-modal--badge-active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.tour-calendar-modal--badge-past {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Responsive */
@media (max-width: 576px) {
    .tour-calendar-modal--item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .tour-calendar-modal--status {
        align-self: flex-end;
    }
}
