.featured-section {
    background: rgba(242, 244, 247, 1);
}

.featured-flight-list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.featured-flight-card {
    font-size: 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--Color-100, rgba(228, 231, 233, 1));
    flex: 0 0 calc(25% - 24px);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    padding: 10px;
    cursor: pointer;
}

.featured-flight-card-img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f7fa;
}

.featured-flight-card-content {
    padding: 20px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-flight-card-title a {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #222d35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-flight-card-desc {
    font-size: 15px;
    color: #6b7a89;
    margin-bottom: 12px;
    line-height: 24px;
    min-height: 72px;
    /* luôn bằng chiều cao của 3 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-flight-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    min-height: 54px;
}

.featured-flight-card-price {
    font-size: 1.22rem;
    font-weight: bold;
    color: #111b2b;
}

.featured-flight-card-btn {
    padding: 7px 22px;
    border: 2px solid #e6e6e6;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.97rem;
    cursor: pointer;
    transition: background 0.18s, color 0.16s;
    box-shadow: 0 2px 8px rgba(58, 169, 187, 0.07);
}

.featured-flight-card-btn:hover {
    background: var(--main-color);
    color: #e9fafd;
}


/* start */

.service-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 380px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-content p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* end */


.box_cheap_flight{
    background-color: rgba(255, 249, 246, 1);
}
