/* Tour Deals Homepage Styles */

/* Deal Cards */
.deal-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Deal Badge */
.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Top Deal Cards */
.top-deal-card {
    position: relative;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.top-deal-card:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* Top Deal Badge */
.top-deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
}

.top-deal-badge i {
    margin-right: 4px;
    color: #ff6b6b;
}

/* Price Styling */
.offer-price {
    margin: 15px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.price-suffix {
    font-size: 12px;
    color: #666;
    font-weight: normal;
}

/* Rating with number */
.rating-number {
    margin-left: 5px;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

/* Top Deal Card Content */
.top-deal-card .offer-content {
    padding: 15px;
}

.top-deal-card h4 {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.3;
    color: #2c3e50;
}

.top-deal-card .offer-price .price {
    font-size: 16px;
}

.top-deal-card .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Section Headers */
.section-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-deal-card h4 {
        font-size: 13px;
    }
    
    .deal-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .top-deal-badge {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .price {
        font-size: 16px;
    }
    
    .top-deal-card .offer-price .price {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .col-md-3.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}