.offers-section {
    padding: 60px 0;
    background: white;
}

.offer-card {
    display: block;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.offer-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: linear-gradient(135deg, #FF6B6B, #FF4B2B);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(0);
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-tag {
    transform: scale(1.05) rotate(-3deg);
}

.offer-tag img {
    height: 24px;
    width: auto;
}

.offer-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.route-info {
    padding: 15px;
    position: relative;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.route-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 4px 0;
}

.route-point i {
    color: var(--primary-color);
    font-size: 0.5rem;
}

.route-line {
    width: 2px;
    height: 20px;
    background-color: var(--primary-color);
    margin: 2px 0 2px 4px;
}

.price-info {
    padding: 15px;
    background: white;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2px;
}

.price {
    display: flex;
    align-items: baseline;
    color: var(--text-color);
}

.currency {
    font-size: 0.9rem;
    margin-right: 2px;
    color: #666;
}

.amount {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-color);
}

.cents {
    font-size: 1rem;
    margin-left: 1px;
    color: var(--primary-color);
}

.btn-book {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 142, 251, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .offer-card {
        margin: 10px;
    }
    
    .offer-image {
        height: 140px;
    }

    .route-info {
        padding: 12px;
    }

    .price-info {
        padding: 12px;
    }
} 