/* Öneri Sistemi Stilleri */
.recommendation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.recommendation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recommendation-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.recommendation-header i {
    margin-right: 0.5rem;
}

/* İlgi Alanı Seçici */
.preference-selector {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.preference-selector h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.interest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.interest-chip {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.interest-chip:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.interest-chip.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

/* Mevsim Bilgisi */
.season-info {
    margin-bottom: 3rem;
}

.current-season {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.current-season i {
    font-size: 3rem;
    color: #667eea;
}

.current-season h4 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.current-season p {
    margin: 0.5rem 0 0 0;
    color: #666;
}

/* Önerilen Turlar */
.recommended-tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recommended-tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recommended-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.recommendation-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.match-score {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.match-score i {
    color: #ffd700;
}

.recommended-tour-card .tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.recommended-tour-card .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recommended-tour-card:hover .tour-image img {
    transform: scale(1.15);
}

.recommended-tour-card .tour-content {
    padding: 2rem;
}

.recommended-tour-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.tour-meta i {
    color: #667eea;
}

.recommendation-reasons-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.reason-tag {
    display: inline-block;
    background: #f0f4ff;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    border-left: 3px solid #667eea;
}

.recommended-tour-card .tour-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f8f9fa;
}

.recommended-tour-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Öneri Sebepleri */
.why-recommended {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-recommended h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.recommendation-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: #f0f4ff;
    transform: translateX(5px);
}

.reason-item i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.reason-item span {
    color: #333;
    font-weight: 500;
}

/* Sonuç Bulunamadı */
.no-recommendations {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-recommendations i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.no-recommendations p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .recommendation-header h2 {
        font-size: 2rem;
    }

    .preference-selector {
        padding: 1.5rem;
    }

    .interest-chips {
        justify-content: center;
    }

    .interest-chip {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .current-season {
        flex-direction: column;
        text-align: center;
    }

    .recommended-tours {
        grid-template-columns: 1fr;
    }

    .tour-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .recommendation-reasons {
        grid-template-columns: 1fr;
    }

    .why-recommended {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .recommendation-section {
        padding: 50px 0;
    }

    .recommendation-header h2 {
        font-size: 1.75rem;
    }

    .preference-selector h3 {
        font-size: 1.1rem;
    }

    .interest-chip {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .current-season h4 {
        font-size: 1.1rem;
    }

    .recommended-tour-card .tour-content {
        padding: 1.5rem;
    }

    .recommended-tour-card h3 {
        font-size: 1.2rem;
    }

    .recommendation-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .match-score {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animasyonlar */
.recommended-tour-card:nth-child(1) {
    animation-delay: 0.1s;
}

.recommended-tour-card:nth-child(2) {
    animation-delay: 0.2s;
}

.recommended-tour-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover Efektleri */
.recommendation-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
