/* Tur Detay Sayfası */
.tour-detail {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Hero Section */
.tour-hero {
    margin-bottom: 40px;
}

.tour-hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tour-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px 30px 30px;
    color: white;
}

.tour-category-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
}

.tour-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Content Grid */
.tour-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

/* Main Content */
.tour-main-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tour-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.tour-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.feature-item i {
    font-size: 24px;
    color: #667eea;
}

.feature-item > div {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 12px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.feature-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Sidebar */
.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Booking Card */
.tour-booking-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.tour-price-section {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.price-label {
    font-size: 13px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
}

.price-currency {
    font-size: 24px;
    margin-left: 5px;
}

.tour-quick-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-info-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.quick-info-content {
    display: flex;
    flex-direction: column;
}

.quick-info-label {
    font-size: 12px;
    color: #95a5a6;
    margin-bottom: 2px;
}

.quick-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.btn-reservation {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-reservation i {
    margin-right: 8px;
}

/* Contact Card */
.tour-contact-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tour-contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-contact-card h3 i {
    color: #667eea;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #667eea;
}

/* Responsive */
@media (max-width: 1024px) {
    .tour-content-grid {
        grid-template-columns: 1fr 320px;
        gap: 20px;
    }
    
    .tour-hero-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .tour-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-hero-image {
        height: 300px;
        border-radius: 12px;
    }
    
    .tour-hero-title {
        font-size: 24px;
    }
    
    .tour-hero-overlay {
        padding: 30px 20px 20px;
    }
    
    .tour-main-content,
    .tour-booking-card,
    .tour-contact-card {
        padding: 20px;
    }
    
    .tour-booking-card {
        position: static;
    }
    
    .tour-features {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .tour-hero-image {
        height: 250px;
    }
    
    .tour-hero-title {
        font-size: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
}
