/* ================= RECOMMENDED TRIPS ================= */

.recommended {
    padding: 90px 0;
    background: #fafafa;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.section-header p {
    color: #777;
    margin-top: 6px;
}

/* CARD */
.trip-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.trip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* FIXED IMAGE RATIO */
.trip-img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eee;
}

.trip-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE */
.badge-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffb703;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* BODY */
.trip-body {
    padding: 22px;
}

.rating {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.rating span {
    color: #999;
}

.trip-body h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* META */
.meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: #888;
    margin-bottom: 18px;
}

/* PRICE ROW */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 20px;
    font-weight: 800;
}

.price small {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

/* BUTTON */
.btn-book {
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-book:hover {
    background: #ffb703;
    color: #000;
}

/* LOAD MORE */
.btn-load {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    border: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .meta {
        flex-direction: column;
        gap: 6px;
    }
}
